import { App } from './app.entity';
export declare class User {
    id: string;
    googleId: string | null;
    email: string;
    password: string | null;
    name: string;
    profilePhoto: string | null;
    accessToken: string | null;
    refreshToken: string | null;
    tokenExpiry: number | null;
    showUploaderInfo: boolean;
    role: string;
    isActive: boolean;
    lastActiveAt: Date | null;
    buildLinkExpiryDays: number | null;
    aiReleaseNotesEnabled: boolean | null;
    maxBuildSizeMb: number | null;
    cicdEnabled: boolean | null;
    slackEnabled: boolean | null;
    slackAccessToken: string | null;
    slackWorkspaceId: string | null;
    slackWebhookUrl: string | null;
    slackChannelId: string | null;
    slackBotUserId: string | null;
    createdAt: Date;
    apps: App[];
}
