import { Schema } from 'koishi';
export interface Config {
    API: {
        endpoint: string;
    } | 'https://api.pcrdfans.com';
    API_KEY: string;
    IPv4: boolean;
}
export declare const Config: Schema<Config>;
