/// import { type LinkProps } from '../../../components/src/components.ts'; interface LinkWithQueryParamsProps extends LinkProps { href?: string; children: React.ReactNode; } declare function LinkWithQueryParams({ href, children, ...props }: LinkWithQueryParamsProps): import("react/jsx-runtime").JSX.Element; export default LinkWithQueryParams;