import { MaybeRef } from 'vue'; export interface Props { label?: string; value?: string; disabled?: string; options?: string; } export declare const defaultProps: Required; export declare function useProps(props: MaybeRef<{ props?: Props; valueKey?: any; }>): { aliasProps: import("vue").ComputedRef<{ label: string; value: string; disabled: string; options: string; }>; getLabel: (option: Record) => any; getValue: (option: Record) => any; getDisabled: (option: Record) => any; getOptions: (option: Record) => any; getKey: (value: any) => any; };