import { ReactNode, RefObject } from 'react'; type ExpandableProps = { title?: string; defaultOpen?: boolean; onChange?: (open: boolean) => void; lazy?: boolean; className?: string; children?: ReactNode; uniqueParamId?: string; onMount?: () => void; onOpen?: () => void; onClose?: () => void; openedText?: string; closedText?: string; hasScrolledToAnchorRef?: RefObject; anchor?: string; }; declare const Expandable: ({ title, defaultOpen, onChange: onChangeProp, lazy, className, children, uniqueParamId, onMount, onOpen, onClose, openedText, closedText, hasScrolledToAnchorRef, anchor, }: ExpandableProps) => import("react/jsx-runtime").JSX.Element; export { Expandable }; export type { ExpandableProps }; //# sourceMappingURL=expandable.d.ts.map