export interface Options { separator: string; } export declare const useTitle: (opts?: Partial) => { head: import("vue").ComputedRef; parts: import("vue").ComputedRef; replace: (replacement: string | Promise) => Promise; replacePart: (index: number, replacement: string | Promise) => Promise; replaceParts: (newParts: (string | Promise)[]) => Promise; resolving: import("vue").Ref; tail: import("vue").ComputedRef; title: import("vue").Ref; };