import { ReactNode } from 'react'; import { ActionButtonsProps } from '../../action/ActionButtons/types'; import { HeadlineProps } from '../../content/Headline'; export declare const bottomSheetVariants: (props?: ({ variant?: "default" | "sticky" | null | undefined; isOpen?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type BottomSheetProps = { variant?: 'default' | 'sticky'; isCloseButtonVisible?: boolean; isOpen: boolean; actionButtonsProps?: ActionButtonsProps; headlineProps: HeadlineProps; badges?: number; children: ReactNode; onOpenChange?: () => void; onClose?: () => void; onExpand?: () => void; onCollapse?: () => void; }; export type BottomSheetHeaderProps = { isCloseButtonVisible?: boolean; badges?: BottomSheetProps['badges']; onClose?: () => void; onExpand?: () => void; headlineProps: BottomSheetProps['headlineProps']; variant: BottomSheetProps['variant']; onResize: (deltaY: number) => void; }; //# sourceMappingURL=types.d.ts.map