import { IComponentProps, IComponentStyle } from "./common"; import { ButtonStyle, IButton, Vec4 } from "ave-ui"; export interface IButtonComponentProps extends IComponentProps { text?: string; style?: IButtonStyle; enable?: boolean; iconInfo?: { name: string; size?: number; }; onClick?: Parameters[0]; } export interface IButtonStyle extends IComponentStyle { color?: Vec4; visualStyle?: ButtonStyle; } export declare const Button: import("./common").ReactAveTag;