import React from 'react'; import type { FloatingAccessoryProps } from './types'; /** * FloatingAccessory is a component that allows you to add and * absolute positioned element to a component */ export declare function FloatingAccessory({ children, accessory, shape, position, offset, }: FloatingAccessoryProps): React.JSX.Element;