export declare const sampleDataJson: {
    table1: {
        col1: string;
        col2: string;
    }[];
    table2: {
        col1: string;
    }[];
};
export declare const expectedDataArr: {
    table1: string[][];
    table2: string[][];
};
export declare const expectedDataObj: {
    table1: {
        COL1: string;
        COL2: string;
    }[];
    table2: {
        COL1: string;
    }[];
};
export declare const getOutputJson: (fileName: string) => Promise<any>;
