import * as Util from './mock/util'; import * as RE from './mock/regexp/index'; import { toJSONSchema } from './mock/schema/index'; import { valid } from './mock/valid/index'; import { mock } from './mock/mock'; declare const Mock: { Handler: { gen: typeof import("./mock/handle/gen").gen; extend: typeof Util.extend; }; Random: Record; Util: typeof Util; XHR: ((...args: any[]) => import("./mock/xhr/XMLHttpRequest/xhr").MockXMLHttpRequest) & { setup(config: any): void; mock(): void; }; RE: typeof RE; toJSONSchema: typeof toJSONSchema; valid: typeof valid; heredoc: typeof Util.heredoc; setup: (settings: unknown) => void; _mocked: { $getAll(): any[]; $set(value: any): void; $delete(key: any): void; $clear(): void; }; mock: typeof mock; version: string; }; export default Mock; export { registerRandom } from './mock/random'; export * from 'game-random';