import { SxProps, Theme } from '@mui/material'; type UrlType = { urlText?: React.ReactNode; urlIconText?: React.ReactNode; urlLabel?: string; urlPath?: string; disabled?: boolean; disabledTooltip?: string; underline?: "none" | "hover" | "always"; clickAction?: () => void; sx?: SxProps; }; declare const Url: ({ urlText, urlIconText, urlLabel, urlPath, clickAction, disabled, disabledTooltip, underline, sx, }: UrlType) => import("react/jsx-runtime").JSX.Element; export default Url;