/** * Hook that sets the document title * * @param title - The title to set * * @example * ```tsx * const Component = () => { * useTitle('My Page Title'); * return
Content
; * }; * ``` * * @remarks * SSR-safe: This hook checks for DOM availability before attempting to set the title. * In server-side rendering environments, the hook will safely return without errors. */ export declare function useTitle(title: string): void; //# sourceMappingURL=useTitle.d.ts.map