export declare class GhostButtonComponent { /** * Text to be display in the button * @internal */ displayText: string; /** * Button color style */ color: string; /** * This function will be call when the user click the button, * the button will emit the entire html event to be handle * in the parent component. * @internal */ onClick: Function; /** * Allow the user the option to disable the button * Default value: false * @internal */ isDisabled: boolean; constructor(); submit: (event: Event) => void; }