import * as React from 'react'; import { BaseLinkProps } from '../BaseLink'; type SubNavLinkProps = BaseLinkProps & { active?: boolean; children: React.ReactNode; icon?: React.ReactNode; isSubSectionChild?: boolean; withBullet?: boolean; }; declare const SubNavLink: = "a">(props: React.PropsWithoutRef> & React.RefAttributes) => React.ReactNode; type SubNavLinkComponent = (props: SubNavLinkProps) => React.ReactNode; export { SubNavLink }; export type { SubNavLinkProps, SubNavLinkComponent }; //# sourceMappingURL=SubNavLink.d.ts.map