export declare type PostsModels = { id: number; name?: string | null; title?: string | null; body?: string | null; categoryId?: number | null; cronExpression?: string | null; schedulerJobName?: string | null; postAssocs: (any[] | boolean | number | string) | null; createdBy?: number | null; createdAt: string; updatedAt: string; deletedAt?: string | null; };