import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
/** Renders an HTML `<u>` element. Accepts optional attributes and child content. */
declare const U: import("svelte").Component<Props, {}, "">;
type U = ReturnType<typeof U>;
export default U;
