import * as React from 'react'; import { CustomInfoItemComponent } from "../components/PostInfo/PostInfo.js"; export interface SettingsContextProps { addNavigationLinkForPages?: boolean; isAnimationEnabled?: boolean; getBlogPath?: (pathPrefix: string) => string; extraInfoItems?: CustomInfoItemComponent[]; } export declare const SettingsContext: React.Context;