/** * This is an example of what your code should look like. * The code for this package is nothing but the makeFixture * function. */ import { Company } from '../types'; export declare const makeCompanyFixture: (overrides?: Partial) => Company; export declare const makeCompanyFixtures: (count: number, overrides?: Partial, uniqueId?: keyof Company) => Company[];