import { APIApplication } from "discord-api-types/v10"; import { User } from "./User"; import { Team } from "./Team"; import { InstallParams } from "./InstallParams"; export declare class Application { id: string | null; name: string | null; icon: string | null; description: string | null; rpcOrigins: string[] | null; botPublic: boolean | null; botRequireCodeGrant: boolean | null; termsOfServiceUrl: string | null; privacyPolicyUrl: string | null; owner: User | null; verifyKey: string | null; team: Team | null; guildId: string | null; primarySkuId: string | null; slug: string | null; coverImage: string | null; flags: number | null; tags: [string?, string?, string?, string?, string?] | null; installParams: InstallParams | null; customInstallUrl: string | null; constructor(raw: Partial | APIApplication); } //# sourceMappingURL=Application.d.ts.map