import { Ref } from 'vue';
export interface UseTitleOptions {
    restoreOnUnmount?: boolean;
}
declare function useTitle(title: Ref<string> | string, options?: UseTitleOptions): void;
export default useTitle;
