export default createPageSchema; declare function createPageSchema({ documentEditorOptions, customMetaFields, series, darkMode, paynotes, Link, titleBlockPrepend, getPath, metaHeadlines, skipContainer, skipCenter, hasEmailTemplate, ...args }?: { documentEditorOptions: any; customMetaFields?: any[]; series?: boolean; darkMode: any; paynotes?: boolean; Link?: ({ children }: { children: any; }) => any; titleBlockPrepend?: any; getPath?: ({ slug }: { slug: any; }) => string; metaHeadlines?: boolean; skipContainer?: boolean; skipCenter?: boolean; hasEmailTemplate?: boolean; }): { repoPrefix: string; getPath: ({ publishDate, slug }: { publishDate: any; slug: any; }) => string; rules: { matchMdast: any; component: ({ children }: { children: any; }) => any; editorModule: string; editorOptions: { skipCredits: boolean; }; rules: any[]; }[]; };