import type { Plugin } from 'tippy.js';
type SetupPluginOptions = {
    hideKeys: string[];
    stopEventPropagation: boolean;
};
/**
 * Change plugin settings
 * @param options
 */
export declare const setupHideOnPlugin: ({ hideKeys, stopEventPropagation }: SetupPluginOptions) => void;
/**
 * Tippy plugin to add hiding on Esc to Popover
 */
export declare const hideOnEscPlugin: Plugin;
export {};
