import { colors } from "../design-system.js"; import React from 'react'; export type IconSize = 'small' | 'medium' | 'big' | 'scale'; export type StyledComponentProps = { color: keyof typeof colors.light; size: IconSize; }; export default function createStyledIcon(Component: React.ComponentClass): import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme; } & StyledComponentProps, {}, { ref?: React.Ref> | undefined; }>;