export declare const ConnectionState: {
    readonly Available: "available";
    readonly Requested: "requested";
    readonly Pending: "pending";
    readonly Down: "down";
    readonly Deleting: "deleting";
    readonly Deleted: "deleted";
    readonly Failed: "failed";
};
/**
 * The current state of the connection.
 */
export type ConnectionState = (typeof ConnectionState)[keyof typeof ConnectionState];
