export declare const getAriaDescriptorsBy: ({ title, content, titleId, contentId, }: {
    title?: string;
    content?: JSX.Element | string;
    titleId: string;
    contentId: string;
}) => string | undefined;
