export default Link;
type Link = {
    $on?(type: string, callback: (e: any) => void): () => void;
    $set?(props: Partial<$$ComponentProps>): void;
};
declare const Link: import("svelte").Component<{
    href: any;
    query?: Record<string, any>;
    hash?: string;
    children: any;
} & Record<string, any>, {}, "">;
type $$ComponentProps = {
    href: any;
    query?: Record<string, any>;
    hash?: string;
    children: any;
} & Record<string, any>;
