import Component from '@glimmer/component'; import type { ComponentLike } from '@glint/template'; type Level = '1' | '2' | '3' | '4' | '5' | '6'; type Skin = '1' | '2' | '3' | '4' | '5' | '6' | 'functional'; export interface AuHeadingSignature { Args: { level?: Level; skin?: Skin; }; Blocks: { default: []; }; Element: HTMLHeadingElement; } export default class AuHeading extends Component { get skin(): "au-c-heading--1" | "au-c-heading--2" | "au-c-heading--3" | "au-c-heading--4" | "au-c-heading--5" | "au-c-heading--6" | "au-c-heading--functional"; get Heading(): ComponentLike; } interface HeadingSignature { Blocks: { default: []; }; Element: HTMLHeadingElement; } export {}; //# sourceMappingURL=au-heading.d.ts.map