import * as React from 'react'; import type { GenericHTMLProps } from '../../utils/types'; export declare function usePopoverTitle(params: usePopoverTitle.Parameters): usePopoverTitle.ReturnValue; declare namespace usePopoverTitle { interface Parameters { titleId: string | undefined; setTitleId: React.Dispatch>; } interface ReturnValue { getTitleProps: (externalProps?: GenericHTMLProps) => GenericHTMLProps; } } export {};