import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; import type { FlexAlign, FlexJustify } from "./Flex.svelte"; export type InlineProps = Omit, "class"> & { /** Spacing scale step (0..12) mapped to `--st-spacing-*`. */ gap?: number; align?: FlexAlign; justify?: FlexJustify; wrap?: boolean; as?: string; class?: string; children?: Snippet; }; declare const Inline: import("svelte").Component; type Inline = ReturnType; export default Inline; //# sourceMappingURL=Inline.svelte.d.ts.map