import { ElementRef } from '@angular/core'; import { CanColor } from '../core'; export declare class CybButtonBase { _elementRef: ElementRef; constructor(_elementRef: ElementRef); } export declare const _CybButtonMixinBase: (new (...args: any[]) => CanColor) & typeof CybButtonBase; export declare class ButtonComponent extends _CybButtonMixinBase implements CanColor { constructor(elementRef: ElementRef); /** Focuses the button. */ focus(): void; _getHostElement(): any; /** Gets whether the button has one of the given attributes. */ _hasHostAttributes(...attributes: string[]): boolean; }