import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; import type { FlexAlign, FlexJustify } from "./Flex.svelte"; export type RowProps = Omit, "class"> & { /** Spacing scale step (0..12) used for the column gutter. */ gutter?: number; align?: FlexAlign; justify?: FlexJustify; wrap?: boolean; as?: string; class?: string; children?: Snippet; }; declare const Row: import("svelte").Component; type Row = ReturnType; export default Row; //# sourceMappingURL=Row.svelte.d.ts.map