import type { Snippet } from 'svelte'; export type IconBoxTone = 'brand' | 'neutral' | 'success' | 'warning' | 'error' | 'info'; export type IconBoxSize = 'sm' | 'md' | 'lg' | 'xl'; interface IconBoxProps { tone?: IconBoxTone; size?: IconBoxSize; rounded?: 'lg' | 'xl' | '2xl' | 'full'; class?: string; children?: Snippet; } declare const IconBox: import("svelte").Component; type IconBox = ReturnType; export default IconBox;