export type DBEngineType = 'MySQL' | 'Postgres' | 'DynamoDB'; export declare class Engine { type: DBEngineType; constructor(type: DBEngineType); } //# sourceMappingURL=engine.d.ts.map