import { CSSProperties } from 'react';
export declare const bottomSheetOverlayStyle: CSSProperties;
export declare const getBottomSheetContainerStyle: ({ maxHeight, }: {
    maxHeight: number | string;
}) => CSSProperties;
export declare const getBottomSheetStyle: ({ bottomInset }: {
    bottomInset: string | number;
}) => {
    flex: number;
    overflow: string;
    minHeight: number;
    paddingBottom: string | number;
};
export declare const getBottomSheetGrabContainerStyle: (style?: CSSProperties) => CSSProperties;
export declare const getBottomSheetGrabStyle: (style?: CSSProperties) => CSSProperties;
