// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. declare module 'react-native-keyboard-tracking-view' { import {ViewProps} from 'react-native'; export interface KeyboardTrackingViewRef { pauseTracking: (id: string) => void; resumeTracking: (id: string) => void; resetScrollView: (id: string) => void; setNativeProps(nativeProps: object): void; } interface KeyboardTrackingViewProps extends ViewProps{ accessoriesContainerID?: string; normalList?: boolean; scrollViewNativeID?: string; viewInitialOffsetY?: number; } export const KeyboardTrackingView: React.ForwardRefExoticComponent>; }