import React from "react"; export type FixedBottomSheetProps = { className?: string; /** * This is the body content of the sheet. */ children: React.ReactNode; /** * This header is always present regardless of open state. */ header?: React.ReactNode; open?: boolean; }; export declare const FixedBottomSheetBody: React.ForwardRefExoticComponent>; export declare const FixedBottomSheet: React.ForwardRefExoticComponent> & { Body: React.ForwardRefExoticComponent>; }; //# sourceMappingURL=FixedBottomSheet.d.ts.map