import { EventEmitter } from '../../stencil-public-runtime'; export declare class DdaButton { button_type: string; disabled: boolean; start_icon_family: string; start_icon: string; button_text: string; end_icon_family: string; end_icon: string; aria_label?: string; button_color: string; size?: string; button_shape?: string; icon_button_shape?: string; gap?: number; custom_class?: string; component_mode?: string; button_id: string; button_name?: string; value?: string; buttonClick: EventEmitter<{ event: MouseEvent; id: string; value: string; name: string; }>; private handleClick; render(): any; }