import { PopoverProps } from './Popover'; import { ButtonProps } from '../Button'; import { default as React } from 'react'; export declare const Trigger: React.ForwardRefExoticComponent<{ children?: React.ReactNode; fixedWith?: boolean; style?: React.CSSProperties; } & ButtonProps & React.RefAttributes>; export declare const BasePopover: ({ text, fixedWith, portalled, ...args }: Omit & { text?: string; fixedWith?: boolean; }) => import("react/jsx-runtime").JSX.Element; export declare const ControlledPopover: ({ buttonText, withCheckBox, ...args }: { buttonText: string; withCheckBox?: boolean; } & Omit) => import("react/jsx-runtime").JSX.Element;