import type { Generic } from 'adopted-style-sheets';
import type { Events } from '../enums';
import type { EventCallback } from '../types/callbacks';
export type PopoverCallbacksPropType = {
    [Events.onClose]?: EventCallback<MouseEvent | KeyboardEvent>;
};
export type PropPopoverCallbacks = {
    on: PopoverCallbacksPropType;
};
export declare const validatePopoverCallbacks: (component: Generic.Element.Component, value?: PopoverCallbacksPropType) => void;
