export default createSectionSchema; declare function createSectionSchema({ Link, customMetaFields, series, darkMode, paynotes, titleBlockPrepend, titleMargin, titleBlockRule, getPath, metaBody, hasEmailTemplate, ...args }?: { Link?: ({ children }: { children: any; }) => any; customMetaFields?: any[]; series?: boolean; darkMode?: boolean; paynotes?: boolean; titleBlockPrepend?: any; titleMargin?: boolean; titleBlockRule: any; getPath?: ({ slug }: { slug: any; }) => string; metaBody?: 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[]; }[]; };