import { GenesisTheme } from '../../styles/theme/genesis-theme.types'; interface StyledIconButtonProperties { theme?: GenesisTheme; $themeType?: "primary" | "secondary" | "tertiary" | "destructive" | "utility" | "icon" | "password"; $state?: "active" | "hover" | "pressed" | "focus" | "disabled" | "selected"; children?: React.ReactNode; $isIconButton?: boolean; $isSelected?: boolean; size?: "small" | "normal" | "large"; } export declare const Button: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute, HTMLButtonElement>, StyledIconButtonProperties>> & string; export {};