import type { HTMLAttributes } from 'svelte/elements'; interface Props extends HTMLAttributes { size?: "sm" | "md" | "lg" | "xl" | "full"; children?: import('svelte').Snippet; } declare const Layout: import("svelte").Component; type Layout = ReturnType; export default Layout;