import type { RESTPatchAPIGuildSoundboardSoundJSONBody, RESTPostAPIGuildSoundboardSoundJSONBody, RESTPostAPISoundboardSendSoundJSONBody } from '../../types'; import { BaseShorter } from './base'; export declare class SoundboardShorter extends BaseShorter { getDefaults(): Promise; send(channelId: string, body: RESTPostAPISoundboardSendSoundJSONBody): Promise; list(guildId: string): Promise; get(guildId: string, soundID: string): Promise; create(guildId: string, body: RESTPostAPIGuildSoundboardSoundJSONBody): Promise; edit(guildId: string, soundID: string, body: RESTPatchAPIGuildSoundboardSoundJSONBody): Promise; delete(guildId: string, soundID: string, reason?: string): Promise; }