import type { IInlineProps } from '../../composables/base/useInline.js'; export declare const FormControlProps: { size: { type: StringConstructor; }; disabled: { type: (StringConstructor | BooleanConstructor)[]; }; readonly: { type: (StringConstructor | BooleanConstructor)[]; }; }; export interface IFormControlProps extends IInlineProps { size?: string; disabled?: boolean | string; readonly?: boolean | string; } export declare function useFormControl

(props: P): { class: import("vue").ComputedRef<{ [x: string]: string | boolean | undefined; }>; attr: import("vue").ComputedRef<{ [x: string]: string | undefined; }>; };