import { type AtomType } from "./atom"; /** * Creates a reactive atom that mirrors `document.title`. * * Setting this atom automatically updates the browser tab title via an * internal effect. Reading it inside a memo, effect, or component will * re-run that context whenever the title changes. * * On SSR (environments where `document` is not defined) the initial value * is `""` and writes to the atom are tracked reactively but do not touch * any DOM. */ export declare function createTitleAtom(): AtomType; //# sourceMappingURL=titleAtom.d.ts.map