import React from 'react'; import type { BaseProps } from '../component-helpers'; export type EyebrowTextProps = BaseProps & { ['data-testid']?: string; } & React.ComponentPropsWithoutRef<'span'>; /** * EyebrowText is a simple text component that should be used above Headings. */ export declare const EyebrowText: React.ForwardRefExoticComponent & React.RefAttributes> & { testIds: { root: string; }; };