import type { Snippet } from 'svelte'; type Props = { children: Snippet; }; /** * Layout container for `` rows inside a ``. Establishes a 2-column * subgrid (label / content) so labels align across all rows. * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--grid-card-fields--column-gap` | Gap between label and content columns | `14px` | * | `--sc-kit--grid-card-fields--row-gap` | Gap between rows | `4px` | */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;