import { ComponentProps, FC, PropsWithChildren, ReactNode } from 'react'; type TBastPopoverProps = PropsWithChildren<{ trigger?: 'click' | 'hover'; content: ReactNode; placement?: 'auto' | 'auto-start' | 'auto-end' | 'top' | 'bottom' | 'right' | 'left' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'right-start' | 'right-end' | 'left-start' | 'left-end'; } & Pick, 'className' | 'style' | 'id'>>; declare const BastPopover: FC; export { BastPopover };