import type { ExtractPropTypes, InjectionKey, Ref } from 'vue'; type EmptyValuesContext = ExtractPropTypes; export declare const emptyValuesContextKey: InjectionKey>; export declare const SCOPE = "use-empty-values"; export declare const DEFAULT_EMPTY_VALUES: (string | null | undefined)[]; export declare const DEFAULT_VALUE_ON_CLEAR: undefined; export declare const useEmptyValuesProps: { readonly emptyValues: ArrayConstructor; readonly valueOnClear: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, undefined, boolean>; }; export declare const useEmptyValues: (props: EmptyValuesContext, defaultValue?: null | undefined) => { emptyValues: any; valueOnClear: any; isEmptyValue: (value: unknown) => boolean; }; export {};