import type { Client, TextChannel } from "discord.js";
export declare function getChannel(discord: Client, channelId?: string, defaultChannelId?: string): Promise<TextChannel>;
export declare function createSuccessResponse(data: Record<string, unknown>): {
    content: {
        type: "text";
        text: string;
    }[];
};
export declare function createErrorResponse(error: unknown): {
    content: {
        type: "text";
        text: string;
    }[];
};
//# sourceMappingURL=utils.d.ts.map