export interface TestCase { name: string; doc: unknown; pointer: string; result?: unknown; error?: string; } export declare const testCases: TestCase[];