UNPKG

@attio/react-native-bottom-sheet-toolbox

Version:
21 lines 680 B
import * as React from "react"; import { type StyleProp, type ViewStyle } from "react-native"; declare const styles: { sheet: { height: "200%"; opacity: number; position: "absolute"; top: number; width: "100%"; }; sheetInner: { maxHeight: "100%"; width: "100%"; }; }; export interface BottomSheetToolboxSheetProps extends React.PropsWithChildren { style?: StyleProp<Omit<ViewStyle, keyof (typeof styles)["sheet"]>>; } export declare function BottomSheetToolboxSheet({ children, style }: BottomSheetToolboxSheetProps): React.JSX.Element; export {}; //# sourceMappingURL=bottom-sheet-toolbox-sheet.d.ts.map