import { LitElement } from 'lit'; import { SDS_SIZES } from '../types'; type Level = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; type DisplaySize = 'l' | 'm' | 's' | SDS_SIZES; export interface SDSHeadingProps { level?: Level; size?: DisplaySize; } export declare class SDSHeadingComponent extends LitElement { static styles: import("lit").CSSResult[]; level: SDSHeadingProps['level']; size?: SDSHeadingProps['size']; render(): import("lit-html").TemplateResult<1>; } export {}; //# sourceMappingURL=sds-heading.component.d.ts.map