import type { Snippet } from 'svelte'; type Props = { children: Snippet; }; /** * PanelContent — default padded wrapper for the body of a `PagePanel`. * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--panel-content--padding` | Body padding | `20px 24px` | */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;