import React from 'react'; import { CardProps } from './Card'; import { FloatingViewProps } from './FloatingView'; declare type FloatingCardProps = Omit & Pick & { visible?: boolean; outside?: React.ReactNode; }; export declare function FloatingCard({ usePosition, defaultTop, defaultLeft, disableDrag, defaultWidth, defaultHeight, top, left, width, height, zIndex, pointerEvents, visible, attach, elevation, maxHeight, maxWidth, outside, bounds, ...cardProps }: FloatingCardProps): JSX.Element; export {}; //# sourceMappingURL=FloatingCard.d.ts.map