import { Schema } from './schema';
export declare class SchemaRegistry {
    schemasByType: Map<Function, Schema>;
    getOrCreateSchema(type: Function): Schema;
    getSchema(type: Function): Schema | undefined;
    clear(): void;
}
export declare const defaultSchemaRegistry: SchemaRegistry;
