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