///
export interface StyledProps {
size?: number;
colorOption?: {
normal: string;
hover: string;
};
inverted?: boolean;
disabled?: boolean;
buttonWidth?: number | null;
}
export declare const StyledButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLButtonElement>, StyledProps>> & string;