type Size = 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full'; interface Props { children?: import('svelte').Snippet; maxWidth?: Size | string; padding?: string | number; center?: boolean; class?: string; style?: string; } declare const Container: import("svelte").Component; type Container = ReturnType; export default Container;