import { FC } from 'react'; import * as PopOver from '@radix-ui/react-popover'; /** * @description Popover component * @param {number} currentStep - Current step of the onboarding (mandatory along totalSteps for displaying the progress step) * @param {number} totalSteps - Total steps of the onboarding (mandatory along currentStep for displaying the progress step) * @param {string} title - Title of the popover * @param {string} text - Text of the popover * @param {string} actionText - Text of the action button * @param {() => void} action - Action to be executed when the action button is clicked * @param {boolean} disableAutoOpen - Disable the auto open of the popover. Use it to control the open state from outside * @contentProps - [Props to be passed to the tooltip content]{@link https://www.radix-ui.com/primitives/docs/components/popover#content} * @...props - [Props to be passed to the tooltip root]{@link https://www.radix-ui.com/primitives/docs/components/popover#root} */ declare type RebrandPopoverProps = PopOver.PopoverProps & { currentStep?: number; totalSteps?: number; title?: string; text?: string; actionText?: string; action?: () => void; disableAutoOpen?: boolean; contentProps?: PopOver.PopoverContentProps; isScrollIntoViewEnabled?: boolean; portalContainer?: HTMLElement | null; }; export declare const RebrandPopover: FC; export {}; //# sourceMappingURL=index.d.ts.map