import { IQueryParams } from "@leight-core/leight"; import { FC, PropsWithChildren } from "react"; export declare type ILinkToProps = PropsWithChildren<{ /** * Target href; could be template path, will be expanded by a LinkContext. */ href: string; /** * Optional params used to generate a link. */ query?: IQueryParams; }>; /** * Wrapper component over Next Link with underlying with children passed through. */ export declare const LinkTo: FC;