import { ESLShareUrlGenericAction } from './url-generic-action';
import type { ESLShareButton } from '../core/esl-share-button';
/** Sharing using default browser link behavior {@link ESLShareBaseAction} implementation */
export declare class ESLShareExternalAction extends ESLShareUrlGenericAction {
    static readonly is: string;
    /** Does an action to share */
    share($button: ESLShareButton): void;
}
