export declare function findSchemasRoot(here?: string): string; declare const MESSAGE_TYPE_TO_FILE: Record; export type MessageType = keyof typeof MESSAGE_TYPE_TO_FILE; export declare function messageTypes(): readonly string[]; export declare function loadSchema(messageType: string): unknown; export declare function loadAllSchemas(): Map; declare const REST_NAME_TO_FILE: Record; export type RestSchemaName = keyof typeof REST_NAME_TO_FILE; export declare function loadRestSchema(name: RestSchemaName): unknown; export declare function __resetSchemasRootCache(): void; export {};