import { type Action, type IResourceItem } from "@refinedev/core";
import React from "react";
type Props = {
    handler?: (options: {
        resource?: IResourceItem;
        action?: Action;
        params?: Record<string, string | undefined>;
        pathname?: string;
        autoGeneratedTitle: string;
    }) => string;
};
export declare function DocumentTitleHandler({ handler }: Props): React.JSX.Element;
export {};
//# sourceMappingURL=document-title-handler.d.ts.map