import type { FC, Ref, SVGProps } from 'react'; import type { VariantProps } from 'class-variance-authority'; import { wallyIconVariants } from './classes'; import type { WallyIconStyle } from './types'; type WallyIconVariantProps = VariantProps; export interface WallyIconProps extends Omit, 'style'>, WallyIconVariantProps { ref?: Ref; variant?: WallyIconStyle; } export declare const WallyIcon: FC; export {};