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