import type { GatewayIntentBits, GatewayIntentsString } from "discord.js";
export declare type SdhandlerOptions = {
    token: string;
    intents: GatewayIntentBits[] | GatewayIntentsString[];
    testOnly?: boolean;
    commandsDir?: string;
    eventsDir?: string;
    buttonsDir?: string;
    guildId?: string[];
    prefix?: string[];
    commandsPath?: string;
    eventsPath?: string;
    buttonsPath?: string;
    compileFolder?: string;
};
