import type { TimePicker, NormaItem, NormalPicker, CityResult, LinkResult, Linkage, CityProps } from './type'; /** * Calls the native module to display a time picker. * * @param {TimePicker} options - An object containing optional parameters for the time picker. * @param {string} options.title - The title of the time picker. * @param {string} options.pattern - The pattern of the time picker. * @param {string} options.mixDate - The minimum date for the time picker. * @param {string} options.maxDate - The maximum date for the time picker. * @param {string} options.selectDate - The initially selected date for the time picker. * @return {Promise} A promise that resolves with the selected time. */ export declare const ShowTimePicker: ({ title, pattern, mixDate, maxDate, selectDate, }?: TimePicker) => Promise; /** * Calls the `showNormalPicker` method of the `UiKitPickerModule` to display a normal picker UI. * * @param {NormalPicker} options - An object containing the picker options. * @param {string} options.title - The title of the picker. * @param {Array} options.array - The array of items to be displayed in the picker. * @param {Function} options.selectItem - The callback function to be called when an item is selected in the picker. * @return {Promise} - A promise that resolves with the selected item from the picker. */ export declare const ShowNormalPicker: ({ title, array, selectItem }?: NormalPicker) => Promise; /** * Shows a linkage picker. * * @param {string} title - The title of the picker. * @param {Array} array - The array to be used for the linkage picker. * @return {Promise} A promise that resolves to the selected link result. */ export declare const ShowLinkagePicker: ({ title, array, }?: Linkage) => Promise; /** * A function that shows a city picker. * * @param {CityProps} options - The options for the city picker. * @param {string} options.title - The title of the city picker. * @param {string} options.selcetCity - The selected city. * @return {Promise} - A promise that resolves to the result of the city picker. */ export declare const ShowCityPicker: ({ title, selcetCity }?: CityProps) => Promise; //# sourceMappingURL=index.d.ts.map