import { FunctionalComponent } from "../../stencil-public-runtime";
import { JSXAttributes, JSXBase } from "../../stencil-public-runtime";
import { Scale } from "../interfaces";
export interface XButtonOptions extends JSXAttributes {
  disabled: boolean;
  label: string;
  scale: Scale;
  onClick?: JSXBase.DOMAttributes<HTMLElement>["onClick"];
}
export declare const CSS: {
  button: string;
};
export declare function XButton({ disabled, key, label, onClick, ref, scale }: XButtonOptions): FunctionalComponent;
