import { BooleanInput } from '@angular/cdk/coercion'; import * as i0 from '@angular/core'; /** Types of headlines */ type HeadlineType = 'page' | 'page-bold-caps' | 'section' | 'subsection-large' | 'subsection-medium' | 'subsection-small' | 'subsection-xsmall'; /** The headline sizes */ type NxHeadlineSize = 's' | 'm' | 'l' | 'xl' | '2xl' | '3xl' | '4xl' | undefined; declare class NxHeadlineComponent { /** * Changes the type of the headline which affects the visual appearance. * * You can combine a HeadlineType and 'negative'. */ set classNames(value: string); get classNames(): string; private _classNames; size: NxHeadlineSize; set negative(value: BooleanInput); get negative(): BooleanInput; private _negative; /** @docs-private */ type: HeadlineType; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare class NxHeadlineModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { NxHeadlineComponent, NxHeadlineModule }; export type { HeadlineType, NxHeadlineSize };