import * as React from 'react'; import * as Types from './types'; export type Props = { variant?: string; dimensions?: Types.Dimensions | null | undefined; hidden?: boolean; dragging?: boolean; }; declare const FloatingRect: React.FC; export default FloatingRect;