/** * Utility functions for security field skipping */ /** * Check if a field should be skipped based on skip field patterns */ export declare function shouldSkipSecurityField(fieldName: string, skipFields: string[]): boolean; /** * Check if a URL should be skipped based on skip URL patterns */ export declare function shouldSkipSecurityUrl(url: string, skipUrls: string[]): boolean;