import * as zod from 'zod'; import { Commands } from './common'; import { AuthenticateResponseSchema, InitiateImageUploadResponseSchema } from '../generated/schemas'; export declare const EmptyResponse: zod.ZodNullable>; export declare const AuthorizeResponse: zod.ZodObject<{ code: zod.ZodString; }, "strip", zod.ZodTypeAny, { code: string; }, { code: string; }>; export { AuthenticateResponseSchema as AuthenticateResponse }; export declare const GetGuildsResponse: zod.ZodObject<{ guilds: zod.ZodArray, "many">; }, "strip", zod.ZodTypeAny, { guilds: { id: string; name: string; }[]; }, { guilds: { id: string; name: string; }[]; }>; export declare const GetGuildResponse: zod.ZodObject<{ id: zod.ZodString; name: zod.ZodString; icon_url: zod.ZodOptional; members: zod.ZodArray>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>; nick: zod.ZodNullable>; roles: zod.ZodArray; joined_at: zod.ZodString; deaf: zod.ZodBoolean; mute: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }>, "many">; }, "strip", zod.ZodTypeAny, { id: string; name: string; members: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }[]; icon_url?: string | undefined; }, { id: string; name: string; members: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }[]; icon_url?: string | undefined; }>; export declare const GetChannelResponse: zod.ZodObject<{ id: zod.ZodString; type: zod.ZodEffects, 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1, unknown>; guild_id: zod.ZodNullable>; name: zod.ZodNullable>; topic: zod.ZodNullable>; bitrate: zod.ZodNullable>; user_limit: zod.ZodNullable>; position: zod.ZodNullable>; voice_states: zod.ZodArray>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>; voice_state: zod.ZodObject<{ mute: zod.ZodBoolean; deaf: zod.ZodBoolean; self_mute: zod.ZodBoolean; self_deaf: zod.ZodBoolean; suppress: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }, { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }>; volume: zod.ZodNumber; }, "strip", zod.ZodTypeAny, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }>, "many">; messages: zod.ZodArray>; author: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>>>; member: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>; nick: zod.ZodNullable>; roles: zod.ZodArray; joined_at: zod.ZodString; deaf: zod.ZodBoolean; mute: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }>>>; content: zod.ZodString; timestamp: zod.ZodString; edited_timestamp: zod.ZodNullable>; tts: zod.ZodBoolean; mention_everyone: zod.ZodBoolean; mentions: zod.ZodArray>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>, "many">; mention_roles: zod.ZodArray; mention_channels: zod.ZodArray, "many">; attachments: zod.ZodArray>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }, { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }>, "many">; embeds: zod.ZodArray>; type: zod.ZodNullable>; description: zod.ZodNullable>; url: zod.ZodNullable>; timestamp: zod.ZodNullable>; color: zod.ZodNullable>; footer: zod.ZodNullable>; proxy_icon_url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }, { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }>>>; image: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }>>>; thumbnail: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }>>>; video: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "proxy_url">, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; }>>>; provider: zod.ZodNullable>; url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { name?: string | null | undefined; url?: string | null | undefined; }, { name?: string | null | undefined; url?: string | null | undefined; }>>>; author: zod.ZodNullable>; url: zod.ZodNullable>; icon_url: zod.ZodNullable>; proxy_icon_url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }, { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }>>>; fields: zod.ZodNullable, "many">>>; }, "strip", zod.ZodTypeAny, { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }, { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }>, "many">; reactions: zod.ZodNullable>; roles: zod.ZodNullable>>; user: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>>>; require_colons: zod.ZodNullable>; managed: zod.ZodNullable>; animated: zod.ZodNullable>; available: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }>; }, "strip", zod.ZodTypeAny, { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }, { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }>, "many">>>; nonce: zod.ZodNullable>>; pinned: zod.ZodBoolean; webhook_id: zod.ZodNullable>; type: zod.ZodNumber; activity: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: number; party_id?: string | null | undefined; }, { type: number; party_id?: string | null | undefined; }>>>; application: zod.ZodNullable>; description: zod.ZodString; icon: zod.ZodNullable>; name: zod.ZodString; }, "strip", zod.ZodTypeAny, { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; }, { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; }>>>; message_reference: zod.ZodNullable>; channel_id: zod.ZodNullable>; guild_id: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; }, { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; }>>>; flags: zod.ZodNullable>; stickers: zod.ZodNullable>>; referenced_message: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }, { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }>, "many">; }, "strip", zod.ZodTypeAny, { type: 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1; id: string; voice_states: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }[]; messages: { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }[]; name?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; topic?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; }, { id: string; voice_states: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }[]; messages: { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }[]; type?: unknown; name?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; topic?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; }>; export declare const GetChannelsResponse: zod.ZodObject<{ channels: zod.ZodArray, 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1, unknown>; guild_id: zod.ZodNullable>; position: zod.ZodNullable>; permission_overwrites: zod.ZodNullable, 0 | 1 | -1, unknown>; allow: zod.ZodString; deny: zod.ZodString; }, "strip", zod.ZodTypeAny, { type: 0 | 1 | -1; id: string; allow: string; deny: string; }, { id: string; allow: string; deny: string; type?: unknown; }>, "many">>>; name: zod.ZodNullable>; topic: zod.ZodNullable>; nsfw: zod.ZodNullable>; last_message_id: zod.ZodNullable>; bitrate: zod.ZodNullable>; user_limit: zod.ZodNullable>; rate_limit_per_user: zod.ZodNullable>; recipients: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>, "many">>>; icon: zod.ZodNullable>; owner_id: zod.ZodNullable>; application_id: zod.ZodNullable>; parent_id: zod.ZodNullable>; last_pin_timestamp: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1; id: string; icon?: string | null | undefined; name?: string | null | undefined; application_id?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; permission_overwrites?: { type: 0 | 1 | -1; id: string; allow: string; deny: string; }[] | null | undefined; topic?: string | null | undefined; nsfw?: boolean | null | undefined; last_message_id?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; rate_limit_per_user?: number | null | undefined; recipients?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[] | null | undefined; owner_id?: string | null | undefined; parent_id?: string | null | undefined; last_pin_timestamp?: string | null | undefined; }, { id: string; type?: unknown; icon?: string | null | undefined; name?: string | null | undefined; application_id?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; permission_overwrites?: { id: string; allow: string; deny: string; type?: unknown; }[] | null | undefined; topic?: string | null | undefined; nsfw?: boolean | null | undefined; last_message_id?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; rate_limit_per_user?: number | null | undefined; recipients?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[] | null | undefined; owner_id?: string | null | undefined; parent_id?: string | null | undefined; last_pin_timestamp?: string | null | undefined; }>, "many">; }, "strip", zod.ZodTypeAny, { channels: { type: 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1; id: string; icon?: string | null | undefined; name?: string | null | undefined; application_id?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; permission_overwrites?: { type: 0 | 1 | -1; id: string; allow: string; deny: string; }[] | null | undefined; topic?: string | null | undefined; nsfw?: boolean | null | undefined; last_message_id?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; rate_limit_per_user?: number | null | undefined; recipients?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[] | null | undefined; owner_id?: string | null | undefined; parent_id?: string | null | undefined; last_pin_timestamp?: string | null | undefined; }[]; }, { channels: { id: string; type?: unknown; icon?: string | null | undefined; name?: string | null | undefined; application_id?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; permission_overwrites?: { id: string; allow: string; deny: string; type?: unknown; }[] | null | undefined; topic?: string | null | undefined; nsfw?: boolean | null | undefined; last_message_id?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; rate_limit_per_user?: number | null | undefined; recipients?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[] | null | undefined; owner_id?: string | null | undefined; parent_id?: string | null | undefined; last_pin_timestamp?: string | null | undefined; }[]; }>; export declare const NullableChannelResponse: zod.ZodNullable, 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1, unknown>; guild_id: zod.ZodNullable>; name: zod.ZodNullable>; topic: zod.ZodNullable>; bitrate: zod.ZodNullable>; user_limit: zod.ZodNullable>; position: zod.ZodNullable>; voice_states: zod.ZodArray>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>; voice_state: zod.ZodObject<{ mute: zod.ZodBoolean; deaf: zod.ZodBoolean; self_mute: zod.ZodBoolean; self_deaf: zod.ZodBoolean; suppress: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }, { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }>; volume: zod.ZodNumber; }, "strip", zod.ZodTypeAny, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }>, "many">; messages: zod.ZodArray>; author: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>>>; member: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>; nick: zod.ZodNullable>; roles: zod.ZodArray; joined_at: zod.ZodString; deaf: zod.ZodBoolean; mute: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }>>>; content: zod.ZodString; timestamp: zod.ZodString; edited_timestamp: zod.ZodNullable>; tts: zod.ZodBoolean; mention_everyone: zod.ZodBoolean; mentions: zod.ZodArray>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>, "many">; mention_roles: zod.ZodArray; mention_channels: zod.ZodArray, "many">; attachments: zod.ZodArray>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }, { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }>, "many">; embeds: zod.ZodArray>; type: zod.ZodNullable>; description: zod.ZodNullable>; url: zod.ZodNullable>; timestamp: zod.ZodNullable>; color: zod.ZodNullable>; footer: zod.ZodNullable>; proxy_icon_url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }, { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }>>>; image: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }>>>; thumbnail: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }>>>; video: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "proxy_url">, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; }>>>; provider: zod.ZodNullable>; url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { name?: string | null | undefined; url?: string | null | undefined; }, { name?: string | null | undefined; url?: string | null | undefined; }>>>; author: zod.ZodNullable>; url: zod.ZodNullable>; icon_url: zod.ZodNullable>; proxy_icon_url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }, { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }>>>; fields: zod.ZodNullable, "many">>>; }, "strip", zod.ZodTypeAny, { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }, { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }>, "many">; reactions: zod.ZodNullable>; roles: zod.ZodNullable>>; user: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>>>; require_colons: zod.ZodNullable>; managed: zod.ZodNullable>; animated: zod.ZodNullable>; available: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }>; }, "strip", zod.ZodTypeAny, { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }, { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }>, "many">>>; nonce: zod.ZodNullable>>; pinned: zod.ZodBoolean; webhook_id: zod.ZodNullable>; type: zod.ZodNumber; activity: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: number; party_id?: string | null | undefined; }, { type: number; party_id?: string | null | undefined; }>>>; application: zod.ZodNullable>; description: zod.ZodString; icon: zod.ZodNullable>; name: zod.ZodString; }, "strip", zod.ZodTypeAny, { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; }, { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; }>>>; message_reference: zod.ZodNullable>; channel_id: zod.ZodNullable>; guild_id: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; }, { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; }>>>; flags: zod.ZodNullable>; stickers: zod.ZodNullable>>; referenced_message: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }, { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }>, "many">; }, "strip", zod.ZodTypeAny, { type: 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1; id: string; voice_states: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }[]; messages: { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }[]; name?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; topic?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; }, { id: string; voice_states: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }[]; messages: { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }[]; type?: unknown; name?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; topic?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; }>>; export declare const SelectVoiceChannelResponse: zod.ZodNullable, 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1, unknown>; guild_id: zod.ZodNullable>; name: zod.ZodNullable>; topic: zod.ZodNullable>; bitrate: zod.ZodNullable>; user_limit: zod.ZodNullable>; position: zod.ZodNullable>; voice_states: zod.ZodArray>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>; voice_state: zod.ZodObject<{ mute: zod.ZodBoolean; deaf: zod.ZodBoolean; self_mute: zod.ZodBoolean; self_deaf: zod.ZodBoolean; suppress: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }, { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }>; volume: zod.ZodNumber; }, "strip", zod.ZodTypeAny, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }>, "many">; messages: zod.ZodArray>; author: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>>>; member: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>; nick: zod.ZodNullable>; roles: zod.ZodArray; joined_at: zod.ZodString; deaf: zod.ZodBoolean; mute: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }>>>; content: zod.ZodString; timestamp: zod.ZodString; edited_timestamp: zod.ZodNullable>; tts: zod.ZodBoolean; mention_everyone: zod.ZodBoolean; mentions: zod.ZodArray>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>, "many">; mention_roles: zod.ZodArray; mention_channels: zod.ZodArray, "many">; attachments: zod.ZodArray>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }, { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }>, "many">; embeds: zod.ZodArray>; type: zod.ZodNullable>; description: zod.ZodNullable>; url: zod.ZodNullable>; timestamp: zod.ZodNullable>; color: zod.ZodNullable>; footer: zod.ZodNullable>; proxy_icon_url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }, { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }>>>; image: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }>>>; thumbnail: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }>>>; video: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "proxy_url">, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; }>>>; provider: zod.ZodNullable>; url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { name?: string | null | undefined; url?: string | null | undefined; }, { name?: string | null | undefined; url?: string | null | undefined; }>>>; author: zod.ZodNullable>; url: zod.ZodNullable>; icon_url: zod.ZodNullable>; proxy_icon_url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }, { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }>>>; fields: zod.ZodNullable, "many">>>; }, "strip", zod.ZodTypeAny, { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }, { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }>, "many">; reactions: zod.ZodNullable>; roles: zod.ZodNullable>>; user: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>>>; require_colons: zod.ZodNullable>; managed: zod.ZodNullable>; animated: zod.ZodNullable>; available: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }>; }, "strip", zod.ZodTypeAny, { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }, { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }>, "many">>>; nonce: zod.ZodNullable>>; pinned: zod.ZodBoolean; webhook_id: zod.ZodNullable>; type: zod.ZodNumber; activity: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: number; party_id?: string | null | undefined; }, { type: number; party_id?: string | null | undefined; }>>>; application: zod.ZodNullable>; description: zod.ZodString; icon: zod.ZodNullable>; name: zod.ZodString; }, "strip", zod.ZodTypeAny, { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; }, { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; }>>>; message_reference: zod.ZodNullable>; channel_id: zod.ZodNullable>; guild_id: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; }, { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; }>>>; flags: zod.ZodNullable>; stickers: zod.ZodNullable>>; referenced_message: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }, { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }>, "many">; }, "strip", zod.ZodTypeAny, { type: 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1; id: string; voice_states: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }[]; messages: { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }[]; name?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; topic?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; }, { id: string; voice_states: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }[]; messages: { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }[]; type?: unknown; name?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; topic?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; }>>; export declare const SelectTextChannelResponse: zod.ZodNullable, 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1, unknown>; guild_id: zod.ZodNullable>; name: zod.ZodNullable>; topic: zod.ZodNullable>; bitrate: zod.ZodNullable>; user_limit: zod.ZodNullable>; position: zod.ZodNullable>; voice_states: zod.ZodArray>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>; voice_state: zod.ZodObject<{ mute: zod.ZodBoolean; deaf: zod.ZodBoolean; self_mute: zod.ZodBoolean; self_deaf: zod.ZodBoolean; suppress: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }, { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }>; volume: zod.ZodNumber; }, "strip", zod.ZodTypeAny, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }>, "many">; messages: zod.ZodArray>; author: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>>>; member: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>; nick: zod.ZodNullable>; roles: zod.ZodArray; joined_at: zod.ZodString; deaf: zod.ZodBoolean; mute: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }, { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; }>>>; content: zod.ZodString; timestamp: zod.ZodString; edited_timestamp: zod.ZodNullable>; tts: zod.ZodBoolean; mention_everyone: zod.ZodBoolean; mentions: zod.ZodArray>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>, "many">; mention_roles: zod.ZodArray; mention_channels: zod.ZodArray, "many">; attachments: zod.ZodArray>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }, { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }>, "many">; embeds: zod.ZodArray>; type: zod.ZodNullable>; description: zod.ZodNullable>; url: zod.ZodNullable>; timestamp: zod.ZodNullable>; color: zod.ZodNullable>; footer: zod.ZodNullable>; proxy_icon_url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }, { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }>>>; image: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }>>>; thumbnail: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; }>>>; video: zod.ZodNullable>; proxy_url: zod.ZodNullable>; height: zod.ZodNullable>; width: zod.ZodNullable>; }, "proxy_url">, "strip", zod.ZodTypeAny, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; }, { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; }>>>; provider: zod.ZodNullable>; url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { name?: string | null | undefined; url?: string | null | undefined; }, { name?: string | null | undefined; url?: string | null | undefined; }>>>; author: zod.ZodNullable>; url: zod.ZodNullable>; icon_url: zod.ZodNullable>; proxy_icon_url: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }, { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; }>>>; fields: zod.ZodNullable, "many">>>; }, "strip", zod.ZodTypeAny, { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }, { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }>, "many">; reactions: zod.ZodNullable>; roles: zod.ZodNullable>>; user: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>>>; require_colons: zod.ZodNullable>; managed: zod.ZodNullable>; animated: zod.ZodNullable>; available: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }>; }, "strip", zod.ZodTypeAny, { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }, { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }>, "many">>>; nonce: zod.ZodNullable>>; pinned: zod.ZodBoolean; webhook_id: zod.ZodNullable>; type: zod.ZodNumber; activity: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: number; party_id?: string | null | undefined; }, { type: number; party_id?: string | null | undefined; }>>>; application: zod.ZodNullable>; description: zod.ZodString; icon: zod.ZodNullable>; name: zod.ZodString; }, "strip", zod.ZodTypeAny, { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; }, { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; }>>>; message_reference: zod.ZodNullable>; channel_id: zod.ZodNullable>; guild_id: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; }, { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; }>>>; flags: zod.ZodNullable>; stickers: zod.ZodNullable>>; referenced_message: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }, { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }>, "many">; }, "strip", zod.ZodTypeAny, { type: 0 | 10 | 1 | 4 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -1; id: string; voice_states: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }[]; messages: { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }[]; name?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; topic?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; }, { id: string; voice_states: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; nick: string; mute: boolean; voice_state: { deaf: boolean; mute: boolean; self_mute: boolean; self_deaf: boolean; suppress: boolean; }; volume: number; }[]; messages: { type: number; id: string; content: string; timestamp: string; channel_id: string; tts: boolean; mention_everyone: boolean; mentions: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }[]; mention_roles: string[]; mention_channels: { type: number; id: string; name: string; guild_id: string; }[]; attachments: { id: string; url: string; size: number; filename: string; proxy_url: string; height?: number | null | undefined; width?: number | null | undefined; }[]; embeds: { type?: string | null | undefined; description?: string | null | undefined; url?: string | null | undefined; color?: number | null | undefined; title?: string | null | undefined; timestamp?: string | null | undefined; footer?: { text: string; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; image?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; thumbnail?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; proxy_url?: string | null | undefined; } | null | undefined; video?: { height?: number | null | undefined; url?: string | null | undefined; width?: number | null | undefined; } | null | undefined; provider?: { name?: string | null | undefined; url?: string | null | undefined; } | null | undefined; author?: { name?: string | null | undefined; url?: string | null | undefined; icon_url?: string | null | undefined; proxy_icon_url?: string | null | undefined; } | null | undefined; fields?: { value: string; name: string; inline: boolean; }[] | null | undefined; }[]; pinned: boolean; application?: { id: string; description: string; name: string; icon?: string | null | undefined; cover_image?: string | null | undefined; } | null | undefined; flags?: number | null | undefined; activity?: { type: number; party_id?: string | null | undefined; } | null | undefined; nonce?: string | number | null | undefined; guild_id?: string | null | undefined; author?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; member?: { user: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }; roles: string[]; joined_at: string; deaf: boolean; mute: boolean; nick?: string | null | undefined; } | null | undefined; edited_timestamp?: string | null | undefined; reactions?: { emoji: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }; count: number; me: boolean; }[] | null | undefined; webhook_id?: string | null | undefined; message_reference?: { guild_id?: string | null | undefined; message_id?: string | null | undefined; channel_id?: string | null | undefined; } | null | undefined; stickers?: unknown[] | null | undefined; referenced_message?: unknown; }[]; type?: unknown; name?: string | null | undefined; guild_id?: string | null | undefined; position?: number | null | undefined; topic?: string | null | undefined; bitrate?: number | null | undefined; user_limit?: number | null | undefined; }>>; export declare const VoiceSettingsResponse: zod.ZodObject<{ input: zod.ZodObject<{ device_id: zod.ZodString; volume: zod.ZodNumber; available_devices: zod.ZodArray, "many">; }, "strip", zod.ZodTypeAny, { volume: number; device_id: string; available_devices: { id: string; name: string; }[]; }, { volume: number; device_id: string; available_devices: { id: string; name: string; }[]; }>; output: zod.ZodObject<{ device_id: zod.ZodString; volume: zod.ZodNumber; available_devices: zod.ZodArray, "many">; }, "strip", zod.ZodTypeAny, { volume: number; device_id: string; available_devices: { id: string; name: string; }[]; }, { volume: number; device_id: string; available_devices: { id: string; name: string; }[]; }>; mode: zod.ZodObject<{ type: zod.ZodEffects, -1 | "PUSH_TO_TALK" | "VOICE_ACTIVITY", unknown>; auto_threshold: zod.ZodBoolean; threshold: zod.ZodNumber; shortcut: zod.ZodArray, 0 | 1 | 2 | 3 | -1, unknown>; code: zod.ZodNumber; name: zod.ZodString; }, "strip", zod.ZodTypeAny, { code: number; type: 0 | 1 | 2 | 3 | -1; name: string; }, { code: number; name: string; type?: unknown; }>, "many">; delay: zod.ZodNumber; }, "strip", zod.ZodTypeAny, { type: -1 | "PUSH_TO_TALK" | "VOICE_ACTIVITY"; auto_threshold: boolean; threshold: number; shortcut: { code: number; type: 0 | 1 | 2 | 3 | -1; name: string; }[]; delay: number; }, { auto_threshold: boolean; threshold: number; shortcut: { code: number; name: string; type?: unknown; }[]; delay: number; type?: unknown; }>; automatic_gain_control: zod.ZodBoolean; echo_cancellation: zod.ZodBoolean; noise_suppression: zod.ZodBoolean; qos: zod.ZodBoolean; silence_warning: zod.ZodBoolean; deaf: zod.ZodBoolean; mute: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { deaf: boolean; mute: boolean; echo_cancellation: boolean; noise_suppression: boolean; automatic_gain_control: boolean; input: { volume: number; device_id: string; available_devices: { id: string; name: string; }[]; }; output: { volume: number; device_id: string; available_devices: { id: string; name: string; }[]; }; mode: { type: -1 | "PUSH_TO_TALK" | "VOICE_ACTIVITY"; auto_threshold: boolean; threshold: number; shortcut: { code: number; type: 0 | 1 | 2 | 3 | -1; name: string; }[]; delay: number; }; qos: boolean; silence_warning: boolean; }, { deaf: boolean; mute: boolean; echo_cancellation: boolean; noise_suppression: boolean; automatic_gain_control: boolean; input: { volume: number; device_id: string; available_devices: { id: string; name: string; }[]; }; output: { volume: number; device_id: string; available_devices: { id: string; name: string; }[]; }; mode: { auto_threshold: boolean; threshold: number; shortcut: { code: number; name: string; type?: unknown; }[]; delay: number; type?: unknown; }; qos: boolean; silence_warning: boolean; }>; export declare const SubscribeResponse: zod.ZodObject<{ evt: zod.ZodString; }, "strip", zod.ZodTypeAny, { evt: string; }, { evt: string; }>; export declare const CaptureShortcutResponse: zod.ZodObject<{ shortcut: zod.ZodObject<{ type: zod.ZodEffects, 0 | 1 | 2 | 3 | -1, unknown>; code: zod.ZodNumber; name: zod.ZodString; }, "strip", zod.ZodTypeAny, { code: number; type: 0 | 1 | 2 | 3 | -1; name: string; }, { code: number; name: string; type?: unknown; }>; }, "strip", zod.ZodTypeAny, { shortcut: { code: number; type: 0 | 1 | 2 | 3 | -1; name: string; }; }, { shortcut: { code: number; name: string; type?: unknown; }; }>; export declare const SetActivityResponse: zod.ZodObject<{ name: zod.ZodString; type: zod.ZodNumber; url: zod.ZodNullable>; created_at: zod.ZodNullable>; timestamps: zod.ZodNullable; end: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { start?: number | undefined; end?: number | undefined; }, { start?: number | undefined; end?: number | undefined; }>>>; application_id: zod.ZodNullable>; details: zod.ZodNullable>; details_url: zod.ZodNullable>; state: zod.ZodNullable>; state_url: zod.ZodNullable>; emoji: zod.ZodNullable>; roles: zod.ZodNullable>>; user: zod.ZodNullable>; avatar: zod.ZodNullable>; avatar_decoration_data: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { asset: string; sku_id?: string | undefined; }, { asset: string; sku_id?: string | undefined; }>>; bot: zod.ZodBoolean; flags: zod.ZodNullable>; premium_type: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }, { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; }>>>; require_colons: zod.ZodNullable>; managed: zod.ZodNullable>; animated: zod.ZodNullable>; available: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }, { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; }>>>; party: zod.ZodNullable>; size: zod.ZodNullable>>; }, "strip", zod.ZodTypeAny, { id?: string | null | undefined; size?: number[] | null | undefined; }, { id?: string | null | undefined; size?: number[] | null | undefined; }>>>; assets: zod.ZodNullable>; large_text: zod.ZodOptional>; large_url: zod.ZodOptional>>; small_image: zod.ZodOptional>; small_text: zod.ZodOptional>; small_url: zod.ZodOptional>>; }, "strip", zod.ZodTypeAny, { large_image?: string | null | undefined; large_text?: string | null | undefined; large_url?: string | null | undefined; small_image?: string | null | undefined; small_text?: string | null | undefined; small_url?: string | null | undefined; }, { large_image?: string | null | undefined; large_text?: string | null | undefined; large_url?: string | null | undefined; small_image?: string | null | undefined; small_text?: string | null | undefined; small_url?: string | null | undefined; }>>>; secrets: zod.ZodNullable; match: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { join?: string | undefined; match?: string | undefined; }, { join?: string | undefined; match?: string | undefined; }>>>; instance: zod.ZodNullable>; flags: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: number; name: string; flags?: number | null | undefined; url?: string | null | undefined; application_id?: string | null | undefined; state?: string | null | undefined; state_url?: string | null | undefined; details?: string | null | undefined; details_url?: string | null | undefined; emoji?: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; } | null | undefined; assets?: { large_image?: string | null | undefined; large_text?: string | null | undefined; large_url?: string | null | undefined; small_image?: string | null | undefined; small_text?: string | null | undefined; small_url?: string | null | undefined; } | null | undefined; timestamps?: { start?: number | undefined; end?: number | undefined; } | null | undefined; party?: { id?: string | null | undefined; size?: number[] | null | undefined; } | null | undefined; secrets?: { join?: string | undefined; match?: string | undefined; } | null | undefined; created_at?: number | null | undefined; instance?: boolean | null | undefined; }, { type: number; name: string; flags?: number | null | undefined; url?: string | null | undefined; application_id?: string | null | undefined; state?: string | null | undefined; state_url?: string | null | undefined; details?: string | null | undefined; details_url?: string | null | undefined; emoji?: { id: string; user?: { username: string; discriminator: string; id: string; bot: boolean; avatar_decoration_data: { asset: string; sku_id?: string | undefined; } | null; avatar?: string | null | undefined; global_name?: string | null | undefined; flags?: number | null | undefined; premium_type?: number | null | undefined; } | null | undefined; name?: string | null | undefined; animated?: boolean | null | undefined; roles?: string[] | null | undefined; require_colons?: boolean | null | undefined; managed?: boolean | null | undefined; available?: boolean | null | undefined; } | null | undefined; assets?: { large_image?: string | null | undefined; large_text?: string | null | undefined; large_url?: string | null | undefined; small_image?: string | null | undefined; small_text?: string | null | undefined; small_url?: string | null | undefined; } | null | undefined; timestamps?: { start?: number | undefined; end?: number | undefined; } | null | undefined; party?: { id?: string | null | undefined; size?: number[] | null | undefined; } | null | undefined; secrets?: { join?: string | undefined; match?: string | undefined; } | null | undefined; created_at?: number | null | undefined; instance?: boolean | null | undefined; }>; export declare const GetSkusResponse: zod.ZodObject<{ skus: zod.ZodArray, 1 | 4 | 2 | 3 | 5 | -1, unknown>; price: zod.ZodObject<{ amount: zod.ZodNumber; currency: zod.ZodString; }, "strip", zod.ZodTypeAny, { amount: number; currency: string; }, { amount: number; currency: string; }>; application_id: zod.ZodString; flags: zod.ZodNumber; release_date: zod.ZodNullable; }, "strip", zod.ZodTypeAny, { type: 1 | 4 | 2 | 3 | 5 | -1; id: string; name: string; flags: number; application_id: string; price: { amount: number; currency: string; }; release_date: string | null; }, { id: string; name: string; flags: number; application_id: string; price: { amount: number; currency: string; }; release_date: string | null; type?: unknown; }>, "many">; }, "strip", zod.ZodTypeAny, { skus: { type: 1 | 4 | 2 | 3 | 5 | -1; id: string; name: string; flags: number; application_id: string; price: { amount: number; currency: string; }; release_date: string | null; }[]; }, { skus: { id: string; name: string; flags: number; application_id: string; price: { amount: number; currency: string; }; release_date: string | null; type?: unknown; }[]; }>; export declare const GetEntitlementsResponse: zod.ZodObject<{ entitlements: zod.ZodArray, 1 | 4 | 2 | 3 | 5 | 6 | 7 | -1, unknown>; gifter_user_id: zod.ZodNullable>; branches: zod.ZodNullable>>; starts_at: zod.ZodNullable>; ends_at: zod.ZodNullable>; parent_id: zod.ZodNullable>; consumed: zod.ZodNullable>; deleted: zod.ZodNullable>; gift_code_batch_id: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: 1 | 4 | 2 | 3 | 5 | 6 | 7 | -1; id: string; application_id: string; user_id: string; sku_id: string; gift_code_flags: number; parent_id?: string | null | undefined; gifter_user_id?: string | null | undefined; branches?: string[] | null | undefined; starts_at?: string | null | undefined; ends_at?: string | null | undefined; consumed?: boolean | null | undefined; deleted?: boolean | null | undefined; gift_code_batch_id?: string | null | undefined; }, { id: string; application_id: string; user_id: string; sku_id: string; gift_code_flags: number; type?: unknown; parent_id?: string | null | undefined; gifter_user_id?: string | null | undefined; branches?: string[] | null | undefined; starts_at?: string | null | undefined; ends_at?: string | null | undefined; consumed?: boolean | null | undefined; deleted?: boolean | null | undefined; gift_code_batch_id?: string | null | undefined; }>, "many">; }, "strip", zod.ZodTypeAny, { entitlements: { type: 1 | 4 | 2 | 3 | 5 | 6 | 7 | -1; id: string; application_id: string; user_id: string; sku_id: string; gift_code_flags: number; parent_id?: string | null | undefined; gifter_user_id?: string | null | undefined; branches?: string[] | null | undefined; starts_at?: string | null | undefined; ends_at?: string | null | undefined; consumed?: boolean | null | undefined; deleted?: boolean | null | undefined; gift_code_batch_id?: string | null | undefined; }[]; }, { entitlements: { id: string; application_id: string; user_id: string; sku_id: string; gift_code_flags: number; type?: unknown; parent_id?: string | null | undefined; gifter_user_id?: string | null | undefined; branches?: string[] | null | undefined; starts_at?: string | null | undefined; ends_at?: string | null | undefined; consumed?: boolean | null | undefined; deleted?: boolean | null | undefined; gift_code_batch_id?: string | null | undefined; }[]; }>; export declare const StartPurchaseResponse: zod.ZodNullable, 1 | 4 | 2 | 3 | 5 | 6 | 7 | -1, unknown>; gifter_user_id: zod.ZodNullable>; branches: zod.ZodNullable>>; starts_at: zod.ZodNullable>; ends_at: zod.ZodNullable>; parent_id: zod.ZodNullable>; consumed: zod.ZodNullable>; deleted: zod.ZodNullable>; gift_code_batch_id: zod.ZodNullable>; }, "strip", zod.ZodTypeAny, { type: 1 | 4 | 2 | 3 | 5 | 6 | 7 | -1; id: string; application_id: string; user_id: string; sku_id: string; gift_code_flags: number; parent_id?: string | null | undefined; gifter_user_id?: string | null | undefined; branches?: string[] | null | undefined; starts_at?: string | null | undefined; ends_at?: string | null | undefined; consumed?: boolean | null | undefined; deleted?: boolean | null | undefined; gift_code_batch_id?: string | null | undefined; }, { id: string; application_id: string; user_id: string; sku_id: string; gift_code_flags: number; type?: unknown; parent_id?: string | null | undefined; gifter_user_id?: string | null | undefined; branches?: string[] | null | undefined; starts_at?: string | null | undefined; ends_at?: string | null | undefined; consumed?: boolean | null | undefined; deleted?: boolean | null | undefined; gift_code_batch_id?: string | null | undefined; }>, "many">>; export declare const SetConfigResponse: zod.ZodObject<{ use_interactive_pip: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { use_interactive_pip: boolean; }, { use_interactive_pip: boolean; }>; export declare const UserSettingsGetLocaleResponse: zod.ZodObject<{ locale: zod.ZodString; }, "strip", zod.ZodTypeAny, { locale: string; }, { locale: string; }>; export declare const EncourageHardwareAccelerationResponse: zod.ZodObject<{ enabled: zod.ZodBoolean; }, "strip", zod.ZodTypeAny, { enabled: boolean; }, { enabled: boolean; }>; export declare const GetChannelPermissionsResponse: zod.ZodObject<{ permissions: zod.ZodUnion<[zod.ZodBigInt, zod.ZodString]>; }, "strip", zod.ZodTypeAny, { permissions: string | bigint; }, { permissions: string | bigint; }>; export declare const OpenExternalLinkResponse: import("../utils/zodUtils").ZodEffectOverlayType; }, "strip", zod.ZodTypeAny, { opened: boolean | null; }, { opened: boolean | null; }>>>; export { InitiateImageUploadResponseSchema as InitiateImageUploadResponse }; /** * Because of the nature of Platform Behavior changes * every key/value is optional and may eventually be removed */ export declare const GetPlatformBehaviorsResponse: zod.ZodObject<{ iosKeyboardResizesView: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { iosKeyboardResizesView?: boolean | undefined; }, { iosKeyboardResizesView?: boolean | undefined; }>; export declare const ResponseFrame: zod.ZodObject; evt: zod.ZodNull; }>, "passthrough", zod.ZodTypeAny, zod.objectOutputType; evt: zod.ZodNull; }>, zod.ZodTypeAny, "passthrough">, zod.objectInputType; evt: zod.ZodNull; }>, zod.ZodTypeAny, "passthrough">>; export declare function parseResponsePayload(payload: zod.infer): { data: {} | null | undefined; cmd: Commands; evt: null; nonce: string; };