/// import { MiddlewareMethod } from '../types/middleware'; export declare const sha256: (preimage: Buffer) => Buffer; export declare function moduleExists(path: string): boolean; export declare const loadModuleFromPathOrDirectly: (searchPath: string, module: string) => string | null; export declare const loadModuleOfType: (type: string, name: string) => any; export declare const extractDefaultsFromSchema: (schema: any, path?: string) => any; export declare function composeMiddleware(middleware: MiddlewareMethod[]): MiddlewareMethod; export declare function uuid(): string; export declare function hmac(secret: Buffer, message: string | Buffer): Buffer;