import { ExtractPropTypes, PropType } from 'vue'; type labelWidth = Number | String; export declare const formGroupProps: { readonly label: { readonly type: StringConstructor; readonly default: ""; }; readonly labelWidth: { readonly type: PropType; readonly default: ""; }; readonly prop: { readonly type: StringConstructor; readonly default: ""; }; readonly required: { readonly type: BooleanConstructor; readonly default: false; }; }; export type FormGroupProps = ExtractPropTypes; export interface FormGroupInstance { prop: String; focus?: Function; blur?: Function; change?: Function; check?: Function; clearCheck?: Function; } export {};