import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; export type ContainerSize = "sm" | "md" | "lg" | "xl" | "full"; export type ContainerProps = Omit, "class"> & { size?: ContainerSize; /** Apply horizontal padding using the spacing scale. */ padding?: boolean; as?: string; class?: string; children?: Snippet; }; declare const Container: import("svelte").Component; type Container = ReturnType; export default Container; //# sourceMappingURL=Container.svelte.d.ts.map