export type ChildExampleType = { id: string; column1: number; }; export type RootExampleType = { id: string; column1: ChildExampleType; column2: number; }; export declare const rootFixture: RootExampleType; export declare const invalidRootFixture: { id: string; column1: { id: number; }; };