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 };
