/// <reference types="react" />
import './app-bar.scss';
/**
 * `<BottonAppBar>` has fixed height = 80px
 * @specs https://m3.material.io/components/bottom-app-bar/specs
 */
export declare const BottomAppBar: import("react").ForwardRefExoticComponent<{
    children?: React.ReactNode;
    fixed?: boolean | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "children" | "fixed"> & import("react").RefAttributes<HTMLDivElement>>;
