import type { ReactNode } from "react"; import type { GeistdocsConfig } from "../config"; export interface PageActionRenderContext { markdown: string; page: { path?: string; url: string; }; } export interface CreatePageActionsOptions { config: Pick; getExtraActions?: (context: PageActionRenderContext) => ReactNode[]; } export declare const createPageActions: ({ config, getExtraActions, }: CreatePageActionsOptions) => { config: Pick; getExtraActions: ((context: PageActionRenderContext) => ReactNode[]) | undefined; }; //# sourceMappingURL=page-actions.d.ts.map