///
import { EditorTopbarRightProps } from '../ActionButtons';
import { TopBarStartContainerProps } from '../TopBarStartContainer';
import { StudioDevicesProps } from '../public/StudioDevices';
export interface EditorTopbarProps {
height?: number | string;
leftContainer?: TopBarStartContainerProps | false;
rightContainer?: EditorTopbarRightProps | false;
devices?: StudioDevicesProps | false;
}
interface EditorTopbarComponentProps extends EditorTopbarProps, React.HTMLProps {
}
export declare const EditorTopbar: import("react").FunctionComponent;
export default EditorTopbar;