import type { PropsFor } from "../../types.js";
export type BottomBarProps = PropsFor<"div", {
    /** Remove default padding */
    noPadding?: boolean;
}>;
/**
 * Display a floating bar with custom content at bottom of screen
 *
 * @see https://bifrost.intility.com/react/bottomBar
 */
declare const BottomBar: import("react").ForwardRefExoticComponent<BottomBarProps & import("react").RefAttributes<HTMLDivElement>>;
export default BottomBar;
