import { GrantEnum } from './grant/GrantEnum';
/** Payload used to create user and grant and apply it on a new database on a Web Cloud Database */
export interface DatabaseWizardPayload {
    /** Name of your new database */
    databaseName: string;
    /** Grant of the user on this database */
    grant: GrantEnum;
    /** Password for the new user (alphanumeric and 8 characters minimum) */
    password: string;
    /** New user name used to connect on your database */
    userName: string;
}
//# sourceMappingURL=DatabaseWizardPayload.d.ts.map