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