import { ForwardRefExoticComponent, RefAttributes, SVGProps } from "react"; /** * @public */ declare const GroqLogo: ForwardRefExoticComponent, "ref"> & RefAttributes>; /** * @public */ declare const GroqMonogram: ForwardRefExoticComponent, "ref"> & RefAttributes>; /** * @public */ interface SanityLogoProps { dark?: boolean; } /** * @public */ declare const SanityLogo: ForwardRefExoticComponent, "ref"> & RefAttributes>; /** * @public */ type SanityMonogramScheme = "light" | "dark" | "default"; /** * @public * @deprecated use {@link SanityMonogramScheme} as the `scheme` prop instead */ interface SanityMonogramColor { bg1: string; /** * `bg2` is unused, use `bg1` instead */ bg2: string; fg: string; } /** * @public */ type SanityMonogramProps = { color: SanityMonogramColor; scheme?: undefined; } | { color?: undefined; scheme: SanityMonogramScheme; } | { color?: undefined; scheme?: undefined; }; /** * @public */ declare const SanityMonogram: ForwardRefExoticComponent, "color" | "ref"> & RefAttributes>; export { GroqLogo, GroqMonogram, SanityLogo, SanityLogoProps, SanityMonogram, SanityMonogramColor, SanityMonogramProps, SanityMonogramScheme };