export declare type Output = { error?: string; differences?: Diff; success: boolean; }; export declare type Cell = { cell: string; value: unknown; }; export declare type Diff = { cells: { [key: string]: { expected: unknown; received: unknown; }; }; additionalCells?: string[]; missingCells?: string[]; };