/** Allowed characters: alphanumeric, hyphen, underscore, dot. Prevents path traversal. */ export declare const SAFE_SEGMENT: RegExp; /** Positive decimal integer. Rejects traversal payloads that stringify as non-digits. */ export declare const SAFE_PR_NUMBER: RegExp;