import { HTMLAttributes } from 'react'; import type { TextSize, WeightTypes } from '../Text/types'; export type HeadlineProps = HTMLAttributes & { size?: TextSize; weight?: WeightTypes; subtitleSize?: TextSize; subtitleWeight?: WeightTypes; title: string; subtitle?: string; }; //# sourceMappingURL=types.d.ts.map