import type { ComputedRef, Ref } from 'vue';
export declare function useShareURL(url: Ref<string> | string, text?: Ref<string> | string): ComputedRef<string>;
export declare type UseShareURL = ReturnType<typeof useShareURL>;
