/** Core */ import { CoreComponent } from "cmf.core/src/core"; /** * @whatItDoes * OptionsExpander Component * * @howToUse * This component is used with the inputs and outputs mentioned below. * * ### Inputs * `string` : **icon** - Which icon class to display ; * `string` : **text** - The text for the options button . * `boolean` : **defaultOpen** - Should the options control be open when first rendered . * * ### Example * To use the component, assume this HTML Template as an example: * * ```HTML * * * * ``` * */ export declare class OptionsExpander extends CoreComponent { _isOpen: boolean; icon: string; text: string; defaultOpen: boolean; constructor(); onButtonClick(event: any): void; } export declare class OptionsExpanderModule { }