import type { GenericHTMLProps } from '../../utils/types';
export declare function usePopoverPopup(params: usePopoverPopup.Parameters): usePopoverPopup.ReturnValue;
declare namespace usePopoverPopup {
interface Parameters {
getProps: (externalProps?: GenericHTMLProps) => GenericHTMLProps;
titleId: string | undefined;
descriptionId: string | undefined;
}
interface ReturnValue {
getPopupProps: (externalProps?: GenericHTMLProps) => GenericHTMLProps;
}
}
export {};