import { FlowsPersistence } from './FlowsPersistence';
import { FlowsPersistenceFactory } from './FlowsPersistenceFactory';
/**
 * An implementation of FlowsPersistenceFactory that always returns the same
 * persistence layers given at construction time.
 */
export declare class FlowsPersistenceFactoryPreset implements FlowsPersistenceFactory {
    private readonly persistenceLayers;
    constructor(persistenceLayers: FlowsPersistence[]);
    createPersistenceLayer(): Promise<FlowsPersistence>;
    createPersistenceLayers(): Promise<FlowsPersistence[]>;
}
//# sourceMappingURL=FlowsPersistenceFactoryPreset.d.ts.map