import { PropsWithChildren } from 'react';
export interface LinkProps {
    to?: string;
    [restProp: string]: unknown;
}
export declare function Link({ to, children, ...rest }: PropsWithChildren<LinkProps>): import("react/jsx-runtime").JSX.Element;
