import { Props } from '@viewfly/core'; import { QueryParams } from './providers/_api'; export interface LinkProps extends Props { to: string; active?: string; exact?: boolean; queryParams?: QueryParams; hash?: string; tag?: string; [key: string]: any; } export declare function Link(props: LinkProps): () => import("@viewfly/core").JSX.Element;