type DynamicValues = any; interface dynamicObject { [key: string]: DynamicValues; } type accessorType = string | undefined; export declare const getLabel: (option: dynamicObject, accessor?: accessorType) => any; export declare const getValue: (option: dynamicObject, accessor?: accessorType) => any; export {};