import { BaseGuard } from './base';
import { GuardConfig, GuardResult } from './types';
export declare class TopicRestriction extends BaseGuard {
    constructor(config?: GuardConfig);
    protected getSystemPrompt(): string;
    detect(text: string): Promise<GuardResult>;
}
