import { ElementType, ReactNode } from 'react';
export type TNavigationProps = {
    className?: string;
    children?: ReactNode;
    as?: ElementType;
    hrefPropName?: string;
    pathname: string;
    routes: TNavigationRoute[];
};
export type TNavigationRoute = {
    name: string;
    href: string;
    icon?: string;
};
//# sourceMappingURL=types.d.ts.map