import React from "react"; interface Props { url: string; children?: string | React.ReactNode; inline?: boolean; } export declare const Internal: ({ url, children, inline }: Props) => JSX.Element; export declare const External: ({ url, children, inline }: Props) => JSX.Element; export {};