import { ElementType, ReactNode } from '../../../../node_modules/.pnpm/react@19.2.3/node_modules/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