import * as Util from './mock/util'; import * as Random from './mock/random/index'; import { mock } from './mock/mock'; export { Random }; declare const Mock: { Handler: { array: ({ rule, template, context }: import("./mock/handle").HandlerOptions) => any; boolean: typeof import("./mock/handle").boolean; number: ({ template, rule: { decimal, dmin, dmax, range: [min, max], count, step, }, context, }: import("./mock/handle").HandlerOptions) => number; object: ({ template, rule: { min, max, count, parameters }, context, }: import("./mock/handle").HandlerOptions<{ [key: string]: any; }>) => any; regexp: ({ rule: { count }, template }: import("./mock/handle").HandlerOptions) => string | string[]; string: (options: import("./mock/handle").HandlerOptions) => string | import("./mock/HandleDelay/virtualValue").VirtualValue; gen: typeof import("./mock/handle/gen").gen; placeholder: typeof import("./mock/handle/placeholder").placeholder; }; Random: typeof Random; Util: typeof Util; heredoc: typeof Util.heredoc; mock: typeof mock; }; export default Mock;