import type { BatchData } from '../types.js'; export declare const MAX_MARKERS = 50; export declare const MAX_HTML_LENGTH = 50000; export declare const MAX_NOTES_LENGTH = 5000; export declare const MAX_SELECTOR_LENGTH = 1000; export declare const MAX_SCREENSHOT_SIZE = 5000000; export interface ValidationResult { valid: boolean; error?: string; sanitizedData?: BatchData; } export declare function validateBatchData(data: BatchData): ValidationResult;