export declare const ConnectionAliasAssociationAssociationStatus: {
    readonly NotAssociated: "NOT_ASSOCIATED";
    readonly PendingAssociation: "PENDING_ASSOCIATION";
    readonly AssociatedWithOwnerAccount: "ASSOCIATED_WITH_OWNER_ACCOUNT";
    readonly AssociatedWithSharedAccount: "ASSOCIATED_WITH_SHARED_ACCOUNT";
    readonly PendingDisassociation: "PENDING_DISASSOCIATION";
};
/**
 * The association status of the connection alias.
 */
export type ConnectionAliasAssociationAssociationStatus = (typeof ConnectionAliasAssociationAssociationStatus)[keyof typeof ConnectionAliasAssociationAssociationStatus];
export declare const ConnectionAliasState: {
    readonly Creating: "CREATING";
    readonly Created: "CREATED";
    readonly Deleting: "DELETING";
};
/**
 * The current state of the connection alias, returned as a string.
 */
export type ConnectionAliasState = (typeof ConnectionAliasState)[keyof typeof ConnectionAliasState];
export declare const WorkspacesPoolApplicationSettingsStatus: {
    readonly Disabled: "DISABLED";
    readonly Enabled: "ENABLED";
};
export type WorkspacesPoolApplicationSettingsStatus = (typeof WorkspacesPoolApplicationSettingsStatus)[keyof typeof WorkspacesPoolApplicationSettingsStatus];
export declare const WorkspacesPoolRunningMode: {
    readonly AlwaysOn: "ALWAYS_ON";
    readonly AutoStop: "AUTO_STOP";
};
export type WorkspacesPoolRunningMode = (typeof WorkspacesPoolRunningMode)[keyof typeof WorkspacesPoolRunningMode];
