import { Ref } from 'react'; import { AvailableSizes, FloatingTypes } from '../Primitive/ButtonIconPrimitive'; export type ButtonFloatingType> = Omit, 'variant' | 'size'> & { size?: 'M' | 'S'; }; declare function Floating>(props: ButtonFloatingType, ref: Ref): import("react/jsx-runtime").JSX.Element; declare const ButtonIconFloating: >(props: ButtonFloatingType & { ref?: Ref; }) => ReturnType; export default ButtonIconFloating;