import { ComboboxOptionProps } from '../ComboboxOption'; /** * * Returns an object with properties `value` & `displayName` * based on the props provided * * @property value: string * @property displayName: string * @internal */ export declare const getNameAndValue: ({ value: valProp, displayName: nameProp, }: ComboboxOptionProps) => { value: string; displayName: string; }; //# sourceMappingURL=getNameAndValue.d.ts.map