import { KcGroup, KcOption, KcOptionGroupValue, KcOptionValue } from '../types'; type Options = KcOption[] | KcOption[][] | KcGroup; type Value = KcOptionValue | KcOptionGroupValue; export declare const getSelectedOptions: (options: Options, value: Value | undefined) => [V | K, KcOption][] | undefined; export {};