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