import React from 'react'; import { Theme } from '../../../style'; import { StyleTypes, Sizes, Shapes } from '../shared'; export declare const iconCls: string; interface SButtonProps { styleType: typeof StyleTypes[number]; size: typeof Sizes[number]; shape?: typeof Shapes[number]; loading?: boolean; disabled?: boolean; fakeDisabled?: boolean; checkAble?: boolean; checked?: boolean; block?: boolean; } export declare const SButton: React.ForwardRefExoticComponent & { theme?: Theme | undefined; } & React.RefAttributes>; export declare const SButtonA: React.ForwardRefExoticComponent & { theme?: Theme | undefined; } & React.RefAttributes>; export {};