import { FieldTypeAll } from './'; export declare type Content = { attributes: { contentAlias: string; createdAt: Date; fields: { data: FieldTypeAll[]; }; nextContent: Content | null; patternName: 'a' | 'b'; previousContent: Content | null; publicUid: string; publishedAt: Date; updatedAt: Date; }; id: string; type: 'content'; values: { [key: string]: unknown; }; }; export declare type ServerContent = { attributes: { createdAt: string; publishedAt: string; updatedAt: string; } & Omit; } & Omit;