import * as React from 'react'; import ActionSheet from './ActionSheet'; import { ActionSheetOptions } from './types'; export interface Props { children: React.ReactNode; useNativeDriver?: boolean; } export default class ActionSheetProvider extends React.Component { _actionSheetRef: React.RefObject; constructor(props: Props); getContext: () => { showActionSheetWithOptions: (options: ActionSheetOptions, callback: (i: number) => void) => void; }; render(): JSX.Element; }