declare type Person = { readonly id: number; readonly name: string; readonly age: number; }; export declare const newPerson: () => Person; export {};