export interface BoundedStringArrayOptions { maxEntries?: number; maxLength?: number; trim?: boolean; invalidMessage: string; duplicateMessage: string; createError(message: string): Error; } /** Mandatory parser for unique string collections crossing the orchestration trust boundary. */ export declare function parseBoundedStringArray(value: unknown, options: BoundedStringArrayOptions): string[]; //# sourceMappingURL=bounded-string-array.d.ts.map