import { type CSSProperties, type ReactNode } from 'react'; type BehindTheFoldProps = { children?: ReactNode; open?: boolean; defaultOpen?: boolean; onOpenChange?: (open: boolean) => void; revealLabel?: string; concealLabel?: string; disabled?: boolean; className?: string; secretClassName?: string; coverClassName?: string; style?: CSSProperties; }; declare const BehindTheFold: ({ children, open: controlledOpen, defaultOpen, onOpenChange, revealLabel, concealLabel, disabled, className, secretClassName, coverClassName, style, }: BehindTheFoldProps) => import("react/jsx-runtime").JSX.Element; export { BehindTheFold }; export type { BehindTheFoldProps };