/// import { PopoverProps } from '../Popover'; import { QAProps } from '../types'; /** * @see {@link https://github.com/microsoft/TypeScript/issues/28339} */ declare type DistributiveOmit = T extends unknown ? Omit : never; export declare type HelpPopoverProps = DistributiveOmit & QAProps; export declare function HelpPopover(props: HelpPopoverProps): JSX.Element; export {};