export declare const buttonProps: { color: { type: StringConstructor; validator: (v: any) => boolean; }; loading: { type: BooleanConstructor; }; disabled: { type: BooleanConstructor; }; /** * Text before icon. */ preIcon: { type: StringConstructor; }; /** * Text after icon. */ postIcon: { type: StringConstructor; }; /** * preIcon and postIcon icon size. * @default: 14 */ iconSize: { type: NumberConstructor; default: number; }; onClick: { type: PropType<(...args: any[]) => any>; default: null; }; };