import { Cls } from '../types';
declare type Schema = Record<string, string>;
declare class SchemaCompiler {
    private readonly schema;
    private readonly entities;
    constructor(entities: Cls[]);
    static compile(...entities: Cls[]): Schema;
    compile(): Schema;
    private _compile;
}
export declare const compileSchema: typeof SchemaCompiler.compile;
export {};
