hooks.d.ts 294 B

1234567
  1. import dayjs from 'dayjs';
  2. export declare const useFormatValue: (props: any) => (realValue: any) => any;
  3. export declare function useMinAndMax(): {
  4. getMin: (min: any) => dayjs.Dayjs;
  5. getMax: (max: any) => dayjs.Dayjs;
  6. };
  7. export declare const useFormatLabel: (onFormatLabel: any) => any;