import { Context, Schema } from 'koishi';
export declare const name = "auto-tata-group-name";
export interface GuildConfig {
    guildId: string;
    nameTemplate: string;
}
export interface Config {
    guildTemplates: GuildConfig[];
    updateDelay: number;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): void;
