import { LabelText } from './Label'; import { FormOnColor } from '../../constants'; export interface SublabelProps { /** Sets the content of the Sublabel */ children?: React.ReactNode; /** Adds custom classes to the element. */ className?: string; /** id that is placed on the wrapper */ id: string; /** Array of sublabel strings. Can be of type semibold or normal */ onColor?: FormOnColor; /** Array of sublabel strings. Can be of type semibold or normal */ sublabelTexts?: LabelText[]; /** Sets the data-testid attribute. */ testId?: string; } export declare const Sublabel: React.FC;