import { FC } from 'react'; import { AccordionProps } from './types'; /** * @name PanelProps * @description The props of the Accordion.Panel component * @type AccordionProps * @example * * ... * * * @example * * ... * * * @example * * * ... * * * @name Pol Gubau Amores - https://polgubau.com */ export interface PanelProps extends AccordionProps { /** * @name isOpen * @description If true, the accordion will be open by default. If false, it will be closed by default. If undefined, it will be closed by default. */ isOpen?: boolean; /** * @name alwaysOpen * @description If true, the accordion will be always open. If false, the accordion will be closed by default. If undefined, the accordion will be closed by default. */ setOpen?: () => void; } export declare const AccordionPanel: FC; //# sourceMappingURL=AccordionPanel.d.ts.map