import { PartialEmoji } from "./PartialEmoji"; import { APISelectMenuOption } from "discord-api-types/v10"; import Emoji from "./Emoji"; export declare class SelectMenuOption { label: string | null; value: string | null; description: string | null; emoji: PartialEmoji | null; default: boolean | null; constructor(raw?: APISelectMenuOption | SelectMenuOption); setLabel(label: string): SelectMenuOption; setValue(value: string): SelectMenuOption; setDescription(desc: string): SelectMenuOption; setEmoji(emoji: PartialEmoji | Emoji): SelectMenuOption; setDefault(isDefault: boolean): SelectMenuOption; } //# sourceMappingURL=SelectMenuOption.d.ts.map