import { ButtonAction } from './types'; declare type ButtonProps = { isDisabled?: boolean; borderRadius?: string; background?: string; backgroundHover?: string; }; export declare const StyledButton: import("styled-components").StyledComponent<"button", any, ButtonProps, never>; declare type IconProps = { action: ButtonAction; }; export declare const StyledIcon: import("styled-components").StyledComponent<"span", any, IconProps, never>; export {};