import { HTMLAttributes } from 'react'; import type { TextSize, WeightTypes } from '../Text/types'; /** Number of lines to clamp text, or 'none' to disable clamping */ export type LineClamp = 1 | 2 | 3 | 4 | 5 | 6 | 'none'; export type HeadlineProps = HTMLAttributes & { size?: TextSize; weight?: WeightTypes; subtitleSize?: TextSize; subtitleWeight?: WeightTypes; title: string; subtitle?: string; /** Lines to clamp title and subtitle. Defaults to 2. */ lineClamp?: LineClamp; }; //# sourceMappingURL=types.d.ts.map