import type { Options } from './types//index.js';
export declare function useSocialShare(options?: Options): import("vue-demi").Ref<{
    name: string;
    shareUrl: string;
    args?: {
        title?: string | undefined;
        user?: string | undefined;
        hashtags?: string | undefined;
        image?: string | undefined;
    } | undefined;
    icon: {
        viewBox: string;
        path: string;
    };
    color: string;
}, {
    name: string;
    shareUrl: string;
    args?: {
        title?: string;
        user?: string;
        hashtags?: string;
        image?: string;
    };
    icon: {
        viewBox: string;
        path: string;
    };
    color: string;
} | {
    name: string;
    shareUrl: string;
    args?: {
        title?: string | undefined;
        user?: string | undefined;
        hashtags?: string | undefined;
        image?: string | undefined;
    } | undefined;
    icon: {
        viewBox: string;
        path: string;
    };
    color: string;
}>;
