UNPKG

686 BTypeScriptView Raw
1import React from 'react';
2import { StyleProp, ViewStyle, ModalProps } from 'react-native';
3import { RneFunctionComponent } from '../helpers';
4export declare type BottomSheetProps = {
5 containerStyle?: StyleProp<ViewStyle>;
6 modalProps?: ModalProps;
7 isVisible?: boolean;
8};
9declare const BottomSheet: RneFunctionComponent<BottomSheetProps>;
10export { BottomSheet };
11declare const _default: React.FunctionComponent<Omit<BottomSheetProps & Partial<import("../config").ThemeProps<BottomSheetProps>>, keyof import("../config").ThemeProps<T>>> | React.ForwardRefExoticComponent<BottomSheetProps & Partial<import("../config").ThemeProps<BottomSheetProps>>>;
12export default _default;