import { ResultEnhancer, NormalizationSchema } from './results'; interface User { id: number; firstName: string; lastName: string; email: string; age: number; createdAt: string; } declare const userEnhancer: ResultEnhancer; interface Post { id: number; title: string; author: Author; comments: Comment[]; } interface Author { id: number; name: string; email: string; } interface Comment { id: number; text: string; author: Author; } declare const postSchema: NormalizationSchema; interface Employee extends User { salary: number; department: string; startDate: string; } declare const employeeEnhancer: ResultEnhancer; export { userEnhancer, employeeEnhancer, postSchema, };