import { FC, PropsWithChildren } from "react"; import { Panel } from "./panel"; declare const CollapseRoot: FC>; type Collapse = typeof CollapseRoot & { panel: typeof Panel; }; declare const Collapse: Collapse; export default Collapse; //# sourceMappingURL=collapse.d.ts.map