import { SxProps, TooltipProps } from '@mui/material';
export type HelpPopoverProps = {
    markdownText: string;
    helpUrl?: string;
    placement?: TooltipProps['placement'];
    showCloseButton?: boolean;
    className?: string;
    containerSx?: SxProps;
    iconSx?: SxProps;
    Icon?: React.ComponentType<{
        className?: string;
        sx?: SxProps;
    }>;
};
export declare function HelpPopover({ markdownText, helpUrl, placement, showCloseButton, className, iconSx, containerSx, Icon, }: HelpPopoverProps): import("react/jsx-runtime").JSX.Element;
export default HelpPopover;
//# sourceMappingURL=HelpPopover.d.ts.map