/**
 * Seat types for workspace members.
 * Lite Member is equivalent to Basic Seat in the web application.
 * Member is equivalent to Full Seat in the web application.
 */
export declare const SeatType: {
    readonly WorkspaceAdmin: "workspace_admin";
    readonly WorkspaceMember: "workspace_member";
    readonly WorkspaceLiteMember: "workspace_lite_member";
};
export type SeatType = (typeof SeatType)[keyof typeof SeatType];
