import { TypeORMError } from "./TypeORMError";
/**
 * Thrown when transaction is not started yet and user tries to run commit or rollback.
 */
export declare class TransactionNotStartedError extends TypeORMError {
    constructor();
}
