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