import type { Snippet } from 'svelte'; type ContainerSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | 'full'; type ContainerPadding = 'none' | 'sm' | 'md' | 'lg'; interface ContainerProps { size?: ContainerSize; /** Horizontal padding inside the container */ padding?: ContainerPadding; /** Stretch to full width of parent (still capped by size) */ fluid?: boolean; class?: string; children?: Snippet; } declare const Container: import("svelte").Component; type Container = ReturnType; export default Container;