interface UnstyledButtonTheme { fontSize?: string; color?: string; hoverColor?: string; userSelect?: string; textDecoration?: string; } export type StyleProps = { customStyle?: UnstyledButtonTheme; }; declare const StyledUnstyledButton: import("styled-components").StyledComponent<"button", any, StyleProps, never>; export default StyledUnstyledButton;