import { CSSProperties, FC, PropsWithChildren } from 'react'; type OverlayCardBaseProps = { /** Whether the card is open or closed */ isOpen: boolean; /** Called when the overlay is clicked */ onClickOverlay?: VoidFunction; /** Style object to set on card wrapper
*/ style?: CSSProperties; /** Classnames to apply to card wrapper
*/ className?: string; }; export declare const OverlayCardBase: FC>; export {};