import React from 'react'; export type PortalProps = { type?: string; children: React.JSX.Element; }; type FloaterProps = { /** * Element/coordinates to anchor to */ anchor?: React.RefObject; children: React.ReactNode; }; export declare const Floater: ({ anchor, children }: FloaterProps) => React.JSX.Element; export {}; //# sourceMappingURL=floater.d.ts.map