import * as React from 'react';
import { ILaunchBarItem } from "react-openfin";
interface IProps {
    appLogo: string;
    items: ILaunchBarItem[];
    firstAppBar?: React.ReactNode;
}
declare const LaunchBarComp: React.FunctionComponent<IProps>;
export default LaunchBarComp;
