import { RichTextUnion } from '@airgram-dev/core'; /** The author and publishing date of a page */ export declare class PageBlockAuthorDateBaseModel { _: 'pageBlockAuthorDate'; /** Author */ author: RichTextUnion; /** Point in time (Unix timestamp) when the article was published; 0 if unknown */ publishDate: number; }