export declare function useContainer(): any; export declare function useForm(): any; export declare function useParent(): any; export declare function useProps(props?: any): { setContainer: (value: Record) => void; setForm: (value: Record) => void; setValue: (value?: Record) => void; getValue: (key: string, defaultValue?: any) => T; formNodeProps: import('vue').ComputedRef<{}>; componentProps: import('vue').ComputedRef<{}>; attrProps: import('vue').ComputedRef; };