import { ReactNode } from 'react'; export interface BottomSheetProps { open: boolean; onClose: () => void; children?: ReactNode; closeOnScrim?: boolean; ariaLabel?: string; ariaDescribedBy?: string; } export declare function BottomSheet({ open, onClose, children, closeOnScrim, ariaLabel, ariaDescribedBy, }: BottomSheetProps): import('react').ReactPortal | null;