import React from "react"; import { Theme } from "@emotion/react"; declare type TIconVariant = "primary" | "secondary" | "accent"; export interface IIconProps extends React.SVGProps { size?: string; variant?: TIconVariant; color?: string; } export declare function IconBase({ size, variant, ...props }: IIconProps): JSX.Element; export declare const IconBaseStyled: import("@emotion/styled").StyledComponent<{ theme?: Theme | undefined; as?: React.ElementType | undefined; } & IIconProps, React.SVGProps, {}>; export {};