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