import type { FC, Ref, SVGProps } from 'react'; import type { VariantProps } from 'class-variance-authority'; import { logoVariants } from './classes'; import type { LogoStyle, LogoType } from './types'; type LogoVariantProps = VariantProps; export interface LogoProps extends Omit, 'type'>, LogoVariantProps { ref?: Ref; type?: LogoType; color?: LogoStyle; } export declare const Logo: FC; export {};