export declare class NgNavigatorShareService {
    webNavigator: any;
    constructor();
    canShare(): boolean;
    canShareFile(file: []): boolean;
    share({ title, text, url, files }: {
        title: string;
        text?: string;
        url?: string;
        files?: any[];
    }): Promise<unknown>;
}
