export declare type ButtonVariant = 'primary' | 'secondary' | 'tertiary' | 'quaternary'; declare const buttonHeight: { sm: string; md: string; lg: string; }; export declare type ButtonSize = keyof typeof buttonHeight; interface ButtonProps { variant: ButtonVariant; size: ButtonSize; circle?: boolean; disabled?: boolean; fullWidth?: boolean; isLoading?: boolean; hasBorder?: boolean; } export declare const ButtonStyled: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, ButtonProps, never>; export declare const ButtonLoading: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; export {}; //# sourceMappingURL=index.style.d.ts.map