import React from 'react';
import { ISurface } from '../Surface/Surface';
import { IElement, ISize } from '../types';
export interface IBottomAppBar extends ISurface {
    size?: ISize;
    main?: IElement;
    fixed?: boolean;
    noTransition?: boolean;
}
declare const BottomAppBar: React.FC<IBottomAppBar>;
export default BottomAppBar;
