import { WithSlotMarker } from "../utils/types/Slots.js"; import React from "react"; import { To } from "history"; //#region src/SubNav/SubNav.d.ts type SubNavProps = React.ComponentProps<'nav'> & { actions?: React.ReactNode; align?: 'right'; full?: boolean; label?: string; }; type SubNavLinksProps = React.ComponentProps<'div'>; type SubNavLinkProps = React.ComponentProps<'a'> & { to?: To; selected?: boolean; }; declare const SubNavLink: React.ForwardRefExoticComponent & React.RefAttributes>; declare const _default: React.ForwardRefExoticComponent & React.RefAttributes> & { Link: WithSlotMarker; Links: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; __SLOT__: symbol; }; //#endregion export { SubNavLinkProps, SubNavLinksProps, SubNavProps, _default as default };