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