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 `<FloatingArea>` at a time.
 *
 * @see https://bifrost.intility.com/react/floatingArea
 */
declare const FloatingArea: import("react").ForwardRefExoticComponent<FloatingAreaType & import("react").RefAttributes<HTMLDivElement>>;
export default FloatingArea;
