import { DialogBaseProps } from '../base/dialogBase'; /** * Props for {@link BottomSheet}. * Extends {@link DialogBaseProps}. * * @category BottomSheet */ export type BottomSheetProps = Omit; /** * Bottom sheet component used to display supplementary content anchored to the bottom of the screen. * * Use for actions, filters, or contextual mobile interactions. * * @category BottomSheet * @function * @param props - All bottom sheet props inherited from {@link DialogBase}. * * @example * setOpen(false)}> * Content * */ export declare const BottomSheet: import('react').ForwardRefExoticComponent>;