import { AssetParamValue } from '@uniformdev/assets'; import { LinkParamValue } from '@uniformdev/canvas'; import { TextParameters } from '@/components/canvas/Text/parameters'; import { ComponentProps, ViewPort } from '@/types/cskTypes'; export type NavigationLinkParameters = TextParameters & { icon?: AssetParamValue; link?: LinkParamValue; activeState?: boolean; hoverEffect?: string | ViewPort; className?: string; }; export type NavigationLinkProps = ComponentProps; export { default } from './navigation-link';