import { Item, Summary } from '../../types/types';
declare const testCases: TestCaseObj[];
export default testCases;
type TestCaseObj = {
    input: string;
    summary: Summary;
    output: Item[];
    fails?: boolean;
    notValid?: boolean;
};
