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