import React from 'react'; import { TYPES_MAP } from "../constants/arcHeaderBar"; export declare type NavItemProps = { path: string; label: string; type: keyof typeof TYPES_MAP; }; declare type WrapperProps = { type: keyof typeof TYPES_MAP; href: string; }; export declare const Wrapper: import("styled-components").StyledComponent<"a", any, WrapperProps, never>; declare const _default: React.NamedExoticComponent; export default _default;