import { LinkProps } from 'react-router-dom'; interface Props extends LinkProps { query?: { [name: string]: boolean | string | number | object | Array; }; } declare const Link: ({ to, query, ...props }: Props) => JSX.Element; export default Link;