import type { Snippet } from 'svelte'; export type TextSize = 'xs' | 'sm' | 'md' | 'lg'; export type TextTone = 'primary' | 'secondary' | 'muted'; interface TextProps { size?: TextSize; tone?: TextTone; as?: 'p' | 'span' | 'div'; class?: string; children?: Snippet; } declare const Text: import("svelte").Component; type Text = ReturnType; export default Text;