export declare const Edition: {
    readonly Community: "Community";
    readonly Enterprise: "Enterprise";
};
/**
 * mysql server edition.
 */
export type Edition = (typeof Edition)[keyof typeof Edition];
export declare const ProvisioningState: {
    readonly Unknown: "Unknown";
    readonly Succeeded: "Succeeded";
    readonly Failed: "Failed";
    readonly Canceled: "Canceled";
    readonly Creating: "Creating";
    readonly Deleting: "Deleting";
    readonly Updating: "Updating";
};
/**
 * Gets or sets the provisioning state.
 */
export type ProvisioningState = (typeof ProvisioningState)[keyof typeof ProvisioningState];
export declare const SupportStatus: {
    readonly OutOfSupport: "OutOfSupport";
    readonly Extended: "Extended";
    readonly Mainstream: "Mainstream";
};
/**
 * mysql version support status.
 */
export type SupportStatus = (typeof SupportStatus)[keyof typeof SupportStatus];
