import * as React from 'react'; export interface ILeftNavigationProps { applicationName: string; children?: React.ReactNode; navigationWidth?: number; avatar?: () => void; name?: string | null; role?: string | null; warning?: JSX.Element | null; className?: string; applicationVersion: string; } export declare const LeftNavigation: (props: ILeftNavigationProps) => React.JSX.Element; //# sourceMappingURL=LeftNavigation.d.ts.map