import { FC } from 'react'; import { FRCCollapseProps } from './collapse'; import FRCCollapsePanel from './CollapsePanel'; export type { FRCCollapseProps }; export type { FRCCollapsePanelProps } from './CollapsePanel'; export type FRCCollapseComponent = FC & { Panel: typeof FRCCollapsePanel; }; export declare const TransCollapse: FRCCollapseComponent; export default TransCollapse;