import { LitElement } from 'lit'; import { SxProps } from '../types.js'; /** * Form header component with animated title, subtitle, and optional notice. * Uses design-tokens form classes (.form-title, .form-subtitle). * * @csspart header - The header container * @csspart title - The title element * @csspart subtitle - The subtitle element * @csspart notice - The notice element * @attr {string} title - The form title * @attr {string} subtitle - The form subtitle * @attr {string} notice - The optional notice text * @attr {boolean} no-animation - Disable animations */ export declare class TcFormHeader extends LitElement { title: string; subtitle: string; notice: string; noAnimation: boolean; sx: SxProps; static styles: import('lit').CSSResult[]; render(): import('lit').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'tc-form-header': TcFormHeader; } } //# sourceMappingURL=tc-form-header.d.ts.map