import { type ReactNode } from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; interface BottomSlideProps { children: ReactNode; snapPoints?: number[]; initialSnapIndex?: number; hideBackdrop?: boolean; containerStyle?: StyleProp; handleStyle?: StyleProp; contentStyle?: StyleProp; backdropStyle?: StyleProp; } export interface BottomSlideRef { /** * Opens the bottom sheet at the specified index. * @param index - The index to open (optional). */ open: (index?: number) => void; /** * Closes the bottom sheet. */ close: () => void; } export declare const BottomSlide: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=BottomSlide.d.ts.map