declare const MOCKS: { todoController: { description: string; tags: string[]; }; }; type MockKeys = keyof typeof MOCKS; export declare const getControllersMockData: (mockName: T) => (typeof MOCKS)[T]; export {};