import { type SVGProps } from "react"; import { type ThemeVariant } from "../../theme"; export interface DatalayerTextAIProps extends Omit, "ref"> { size?: number; scale?: number; colorMode?: "light" | "dark" | "auto"; variant?: ThemeVariant; /** Colour for the "LAYER" part of the wordmark. */ primaryColor?: string; /** Secondary accent colour used by the AI glyph. */ secondaryColor?: string; /** Colour for the "DATA" part of the wordmark. */ textColor?: string; textSizeMultiplier?: number; aiPrimaryColor?: string; aiSecondaryColor?: string; /** Gap between wordmark and AI glyph in viewBox units. */ aiGap?: number; } /** * Datalayer wordmark followed by AI glyph on one line. * Both elements are aligned to the same 25-unit cap height. */ export declare const DatalayerTextAI: import("react").ForwardRefExoticComponent>; export default DatalayerTextAI;