import { PluginObject } from 'vue'; export interface IOptions { sources: { [key: string]: any; }; } export declare const defaultOptions: IOptions; export declare function parse(source: (string | any[]), labelKey?: string, valueKey?: string): any; declare const Parse: PluginObject; export default Parse;