import { Configuration } from '../engine/configuration/Configuration';
import { Entity } from '../engine/entity/Entity';
import { Schema } from '../engine/schema/Schema';
import { Action } from '..';
declare type GenerateTestSchemaSetup = {
    entities?: Entity[];
    actions?: Action[];
};
export declare const generateTestSchema: (setup?: GenerateTestSchemaSetup) => Promise<{
    configuration: Configuration;
    schema: Schema;
}>;
export {};
