import { EventEmitter } from '../../stencil-public-runtime';
import { ButtonColor, ButtonSize } from "../../types/gf-button";
export declare class GfButton {
  color: ButtonColor;
  disabled: boolean;
  textColor: string;
  classNames: string;
  plain: boolean;
  size: ButtonSize;
  circle: boolean;
  nativeType: string;
  componentWillLoad(): void;
  changeDisabled(newValue: boolean, oldValue: boolean): void;
  _internal(): Promise<void>;
  displayOnClick: EventEmitter<{
    data: Object;
  }>;
  handClick(): void;
  render(): any;
}
