import { Context, Schema } from 'koishi';
export declare const name = "podris";
export interface Config {
    token: string;
    endpoint: string;
    targetGroups?: string[];
}
export declare const Config: Schema<Config>;
declare module 'koishi' {
    interface Context {
        database: any;
    }
}
export declare function apply(ctx: Context, config: Config): void;
