/** * Internal mock generation helpers shared by model mock factories. * * @module */ /** * Sets the seed for Faker.js (which is used by the mocks). * * @see https://github.com/Marak/Faker.js */ export declare const setFakerSeed: (seed: number) => void; /** The number of milliseconds on a typical day. */ export declare const ONE_DAY: number; /** The number of milliseconds on a typical year. */ export declare const ONE_YEAR: number; export declare const startOfDay: (date: Date) => Date; export declare const endOfMonth: (date: Date) => Date; export declare const endOfYear: (dateTime: Date) => Date; export declare const startOfNextDay: (date: Date) => Date; export declare const generateRandomDateTimes: ({ count, between: [from, to], maxDuplicates, }: { count: number; between: readonly [Date, Date]; maxDuplicates?: number; }) => Array; export declare const generateRandomDates: ({ count, between: [from, to], maxDuplicates, }: { count: number; between: readonly [Date, Date]; maxDuplicates?: number; }) => Array; export declare const generateRandomMonths: ({ count, between: [from, to], maxDuplicates, }: { count: number; between: readonly [Date, Date]; maxDuplicates?: number; }) => Array; export declare const toPairs: (array: Array) => Array<[Item, Item]>; //# sourceMappingURL=mocks.d.ts.map