export declare type BanSnippetsRuleConfig = {
    banned: BannedSnippet[];
};
export declare type BannedSnippet = {
    snippets: string[];
    message?: string;
    includePaths?: string[];
    excludePaths?: string[];
};
