import { ApplicationCommandType, EntryPointCommandHandlerType, type RESTPostAPIApplicationCommandsJSONBody } from "discord-api-types/v10"; import { BaseCommand } from "../abstracts/BaseCommand.js"; /** * Represents a Primary Entry Point command for Activities. */ export declare abstract class EntryPointCommand extends BaseCommand { type: ApplicationCommandType; handler: EntryPointCommandHandlerType; serializeOptions(): RESTPostAPIApplicationCommandsJSONBody["options"]; } //# sourceMappingURL=EntryPointCommand.d.ts.map