UNPKG

siegel

Version:

Web application development ecosystem

12 lines (11 loc) 482 B
import type { List, BuilderList, Component, Props } from './types'; declare const componentID = "-ui-accordion"; declare const getDefaultState: (list?: List | BuilderList) => { expandedPaths: Partial<Record<string, boolean>>; }; declare const Accordion: import("../_internals/types").CoreUIComponent<Props, NonNullableProps<{ theme: Props["theme"]; }>>; export default Accordion; export { componentID, getDefaultState }; export type { List, BuilderList, Component, Props };