type TypeHeadlineText = {
headline?: HTMLElement | null;
};
type TypeBodyText = {
text?: HTMLElement | null;
};
type StateProps = {
hasAnimation?: boolean;
};
type TypeAccordionProps = TypeHeadlineText & TypeBodyText & {
isThemeLight?: boolean;
isThemeDark?: boolean;
isStateOpen: boolean;
};
export declare const createCompositeAccordionItem: (props: TypeAccordionProps) => {
element: HTMLDivElement;
styles: string;
events: {
open: (props: StateProps) => void;
close: (props: StateProps) => void;
};
};
export {};
//# sourceMappingURL=item.d.ts.map