import type { RulesPolicyOptions, SyncRulesConfigOptions, SyncRulesConfigResult } from './types'; interface RemoveRulebookSourceOptions extends SyncRulesConfigOptions { deleteSource?: boolean; } export declare function syncRulesConfig(options?: SyncRulesConfigOptions): Promise; export declare function testRulebookSources(sources: string[], options?: SyncRulesConfigOptions): Promise; export declare function addRulebookSource(source: string, options?: SyncRulesConfigOptions): Promise; export declare function removeRulebookSource(match: string, options?: RemoveRulebookSourceOptions): Promise; export declare function repairLocalRulesPolicy(options?: RulesPolicyOptions): void; export {};