/** * Whitelist command - Manage whitelisted patterns */ /** * Add a pattern to the whitelist * @param pattern - Pattern to add * @returns Exit code (0 = success, 1 = error) */ export declare function whitelistAdd(pattern: string): number; /** * Remove a pattern from the whitelist * @param pattern - Pattern to remove * @returns Exit code (0 = success, 1 = error) */ export declare function whitelistRemove(pattern: string): number; /** * List all whitelisted patterns * @returns Exit code (0 = success, 1 = error) */ export declare function whitelistList(): number; /** * Clear all patterns from the whitelist * @param options - Command options * @returns Exit code (0 = success, 1 = error) */ export declare function whitelistClear(options: { yes?: boolean; }): number; //# sourceMappingURL=whitelist.d.ts.map