interface ButtonProps { /** Is button transparent */ transparent?: boolean; /** The background color of the icon */ background?: string; /** Size of the button */ size: 'small' | 'medium' | 'large' | 'extra-large'; } export declare const Button: import("styled-components").StyledComponent<"button", any, ButtonProps, never>; export {};