export declare const CUSTOM_EVENTS: {
    readonly VIEW_CHANGE: "view-change";
    readonly COPY: "copy";
    readonly SHOW_SOURCE_CODE: "show-source-code";
    readonly SHARE: "share";
    readonly REFRESH: "refresh";
};
export declare function dispatchCustomEvent(eventName: (typeof CUSTOM_EVENTS)[keyof typeof CUSTOM_EVENTS], data?: any): void;
