export declare type UserKind = 'MEMBER' | 'PAT' | 'PUBLIC' | 'WEBHOOK';
export declare type User = {
    id: string;
    kind: UserKind;
    name: string;
    picture: string | null;
    isActive: boolean;
};
