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