import type { SVGProps } from 'react'; export interface DatalayerTextProps extends Omit, 'ref'> { /** Colour for the "LAYER" part of the wordmark. */ primaryColor?: string; /** Colour for the "DATA" part of the wordmark (gray in the original brand logo). */ secondaryColor?: string; /** Multiplies the base wordmark size. 1.0 keeps current dimensions. */ sizeMultiplier?: number; /** X translation in the parent SVG coordinate system. */ x?: number; /** Y translation in the parent SVG coordinate system. */ y?: number; } /** * Official Datalayer wordmark outlines (BebasNeue converted to paths). * * Colour mapping matches the original brand logo SVG: * - "DATA" = secondaryColor (gray in the original) * - "LAYER" = primaryColor (green accent in the original) */ export declare const DatalayerText: ({ primaryColor, secondaryColor, sizeMultiplier, x, y, ...groupProps }: DatalayerTextProps) => JSX.Element; export default DatalayerText;