import { CSSProperties, VNode } from 'vue'; import { CombineProps } from '../interface'; export interface LabelProps { id?: string; /** Whether to display the required * symbol */ required?: boolean; /** Content of label */ text?: any; disabled?: boolean; /** Used to configure the htmlFor attribute of the label tag */ name?: string; /** text-align of label */ align?: string; /** width of label */ width?: number | string; style?: CSSProperties; className?: string; extra?: VNode | (() => VNode); optional?: boolean; } export declare const VuePropsType: CombineProps; declare const Label: import("vue").DefineComponent>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; export default Label;