export declare type ButtonVariants = "primary" | "warning" | "error" | "success"; declare type ButtonProps = { variant: ButtonVariants; rounded?: boolean; }; declare type GhostButtonProps = { rounded?: boolean; }; export declare const GhostButtonWrapper: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, GhostButtonProps, never>; export declare const ButtonWrapper: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, ButtonProps, never>; export {};