export declare class MastodonShareButton {
    share_button_text: string;
    close_button_text: string;
    send_button_text: string;
    modal_title: string;
    other_instance_text: string;
    icon_url: string;
    share_message: string;
    open: boolean;
    dark_mode: boolean;
    instances: string;
    selected_instance: any;
    value: string;
    private element;
    componentDidLoad(): void;
    closeModal(): void;
    openModal(): void;
    handleSubmit(e: any): void;
    handleChange(event: any): void;
    handleSelect(event: any): void;
    parseJSON(string_value: any): any;
    render(): any;
}
