import { ReactNode } from 'react'; export default function ({ children, size, }: { children: ReactNode; size: 'lg' | 'md' | 'sm' | 'xl'; placement: 'bottom' | 'bottom-end' | 'bottom-start' | 'left' | 'left-end' | 'left-start' | 'right' | 'right-end' | 'right-start' | 'top' | 'top-end' | 'top-start'; }): JSX.Element;