export default config;
/**
 * Configuration object containing Discord API and OAuth2 URLs.
 */
export type Config = {
    /**
     * - The base URL for the Discord API.
     */
    url: string;
    /**
     * - The OAuth2 authorization URL for Discord.
     */
    oauth2: string;
};
/**
 * Configuration object containing Discord API and OAuth2 URLs.
 *
 * @typedef {Object} Config
 * @property {string} url - The base URL for the Discord API.
 * @property {string} oauth2 - The OAuth2 authorization URL for Discord.
 */
/**
 * The configuration object for the Discord API and OAuth2.
 *
 * @type {Config}
 */
declare const config: Config;
//# sourceMappingURL=config.d.mts.map