import { type TemplateResult } from 'lit'; import type { NuiType } from '../../types/nui-type.js'; import type { LabelSize } from './types.js'; export interface NuiLabelViewState { value: string; htmlFor: string; required: boolean; invalid: boolean; disabled: boolean; size: LabelSize | ''; nuiType: NuiType; labelClass: string; } export declare function getLabelClass(labelClass: string): string; export declare function renderLabel(state: NuiLabelViewState): TemplateResult; //# sourceMappingURL=logic.d.ts.map