import { IOption } from '../../types/'; interface TArgs { options: IOption[]; selectedValue: string; noSelectionLabel: string; } export declare function getSelectedValueIndex({ options, selectedValue, noSelectionLabel }: TArgs): number; export {};