import { TypographyComponent } from '../typography.component';
import * as i0 from "@angular/core";
/**
 * The LargeTitle component is designed for prominent display text, typically used for major headings
 * or titles within an application. It encapsulates the Typography component's features, offering
 * extensive styling and semantic customization options while defaulting to an `<h1>` HTML element.
 * This choice of default component underscores the importance and hierarchy of the text it encapsulates,
 * making it suitable for primary page titles or significant headings.
 */
export declare class LargeTitleComponent extends TypographyComponent {
    /**
     * The size level of the large title, influencing its styling.
     */
    level: import("@angular/core").InputSignal<"1" | "2">;
    tag: import("@angular/core").InputSignal<string | undefined>;
    get isLevel1(): boolean;
    get isLevel2(): boolean;
    get isPlain(): boolean;
    get isCaps(): boolean;
    get isWeight1(): boolean;
    get isWeight2(): boolean;
    get isWeight3(): boolean;
    static ɵfac: i0.ɵɵFactoryDeclaration<LargeTitleComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<LargeTitleComponent, "tgui-large-title", never, { "level": { "alias": "level"; "required": false; "isSignal": true; }; "tag": { "alias": "tag"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
}
