/** * Tool Category Test Data * * Category-specific test values and field patterns for context-aware * test data generation based on tool classification. * * @module assessment/testdata/tool-category-data */ /** * Tool category-specific data pools for when field name doesn't help identify * the expected input type. Used as fallback after field-name detection. * * Keys must match ToolClassifier category names (lowercase). */ export declare const TOOL_CATEGORY_DATA: Record>; /** * Field names that indicate specific data types regardless of tool category. * These take precedence over category-specific generation. * * Used to identify when field-name-based generation should be used * instead of category-based generation. */ export declare const SPECIFIC_FIELD_PATTERNS: readonly [RegExp, RegExp, RegExp, RegExp, RegExp, RegExp, RegExp, RegExp, RegExp, RegExp, RegExp, RegExp, RegExp, RegExp]; /** * Type for the SPECIFIC_FIELD_PATTERNS array. */ export type SpecificFieldPatternsType = typeof SPECIFIC_FIELD_PATTERNS; //# sourceMappingURL=tool-category-data.d.ts.map