import React from 'react'; import './AutomationLeftNavigation.css'; interface ActionProps { label: string; onClick: Function; type: string; } interface HeaderDataProps { title: string; actions: Array; component: any; } interface NavArrayProp { title: React.ReactNode; onclick: Function; id: string; headerData?: HeaderDataProps; component: React.ReactNode; externalLink?: string; default?: boolean; link?: string; } interface LeftNavigation { navigationData: Array; navigationTitle: string; customDefault?: NavArrayProp; } interface NavigationProps { navigationProps: LeftNavigation; headerContent?: boolean; backNavigation?: Function; noSideNav?: boolean; noLeftNav?: boolean; } interface TitleProps { label: string; info?: string; component?: React.ReactNode; } interface LeftHeaderProps { title: TitleProps; actions?: Array; component?: React.ReactNode; } export declare const LeftNavHeader: React.FunctionComponent; declare const AutomationLeftNavigation: React.FunctionComponent; export default AutomationLeftNavigation;