export interface Options {
    key: string;
    value: string;
}
export interface ShowSelectParams {
    source: Options[];
    selectedKey?: string;
}
declare function showSelect(params: ShowSelectParams): Promise<Options>;
declare namespace showSelect {
    var version: {
        android: string;
        ios: string;
    };
}
export default showSelect;
