export declare type Author = { id: string; fullName?: string; }; export declare type AuthorWithProperties = Author & { properties: Record; };