import type { PropsFor } from "../../types.js"; export type FloatingAreaType = PropsFor<"div", { /** Remove default padding */ noPadding?: boolean; }>; /** * FloatingArea appears in bottom right corner when user is scrolling upwards. * Only use a single `` at a time. * * @see https://bifrost.intility.com/react/floatingArea */ declare const FloatingArea: import("react").ForwardRefExoticComponent>; export default FloatingArea;