import XNode from "@web-atoms/core/dist/core/XNode"; import "./styles/expander.global.css"; export interface IExpander { icon?: string | string[]; isExpanded: boolean; "event-expanded"?: (e: CustomEvent) => any; "event-collapsed"?: (e: CustomEvent) => any; [key: string]: any; } export default function Expander({ icon, isExpanded, ...a }: IExpander, header: XNode, detail: XNode): any; export declare function ExpanderMenu({ icon, isExpanded, ...a }: IExpander, header: XNode, ...details: XNode[]): any; //# sourceMappingURL=Expander.d.ts.map