util.d.ts 403 B

1234
  1. import type { PickerMode } from '../vc-picker/interface';
  2. import type { PickerLocale } from './generatePicker';
  3. export declare function getPlaceholder(picker: PickerMode | undefined, locale: PickerLocale, customizePlaceholder?: string): string;
  4. export declare function getRangePlaceholder(picker: PickerMode | undefined, locale: PickerLocale, customizePlaceholder?: [string, string]): [string, string];