import React from 'react'; import './LeftNavigation.css'; interface ActionProps { label: string; onClick: Function; type: string; } interface HeaderDataProps { title: string | React.ReactNode; actions: Array; pageHeaderContent?: string | React.ReactNode; } 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 | React.ReactNode; customDefault?: NavArrayProp; } interface NavigationProps { navigationProps: LeftNavigation; headerContent?: boolean; noSideNav?: boolean; testId?: string; version?: 'v2'; leftNavVersion?: 'v2'; noLeftNav?: boolean; breadcrumbMargin?: boolean; } interface TitleProps { label: string; info?: string; component?: React.ReactNode; } interface LeftHeaderProps { title: TitleProps; actions?: Array; component?: React.ReactNode; version?: 'v2'; testId?: string; noSideNav?: boolean; noLeftNav?: boolean; } export declare const LeftNavHeader: React.FunctionComponent; declare const LeftNavigation: React.FunctionComponent; export default LeftNavigation;