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