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