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