export interface IProps { size: string; border?: string; color?: string; weight?: string; uppercase?: boolean; borderRadius?: string; fontSize: string; fullWidth?: boolean; theme?: any; buttonType: string; buttonStyle: string; } export declare const StyledButton: import("styled-components").StyledComponent<"button", any, IProps, never>;