import React from 'react';
import { ISurface } from '../Surface/Surface';
import { ISize, IElement } from '../types';
export interface ITopAppBar extends Omit<ISurface, 'version'> {
    position?: 'relative' | 'absolute' | 'static' | 'sticky' | 'fixed' | 'unset';
    version?: 'small' | 'center' | 'medium' | 'large';
    size?: ISize;
    center?: boolean;
    title?: IElement;
    start?: IElement;
    end?: IElement;
}
declare const TopAppBar: React.FC<ITopAppBar>;
export default TopAppBar;
