import { CLSizes } from '../../../index.ts'; export interface CLFormLabelProps { /** CSS prefix for component-specific styling (e.g., 'clll-input', 'clll-textarea') */ cssPrefix?: string; /** The form element ID this label is for */ htmlFor: string; /** The label text to display */ label: string; /** Whether the form element is required */ required?: boolean; /** Size variant to match form element size */ size?: CLSizes; /** Test ID for testing purposes */ testId?: string; } declare const _default: import('vue').DefineComponent & Readonly<{}>, { size: CLSizes; testId: string; required: boolean; cssPrefix: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLabelElement>; export default _default;