export type UserParams = {
    id: string;
    fields?: string;
};
export type UserListParams = {
    email?: string;
    lifecycleStatus?: "active" | "offboarding" | "offboarded";
    isExternal?: boolean;
    size?: number;
    cursor?: string;
};
