import * as React from 'react';
interface iProps {
    /** optional: send the key for the group you want to open by default */
    opened?: string;
    fillHeight?: boolean;
    groups: {
        key: string;
        title: string;
        icon?: JSX.Element;
        content: JSX.Element;
    }[];
}
export declare const AccordionEX: React.FunctionComponent<iProps>;
export {};
