import type { Snippet } from 'svelte'; type Props = { title: string; subtitle?: string; children: Snippet; wide?: boolean; /** Soft edge fades (narrow by default). */ fade?: boolean; class?: string; }; declare const StoreRail: import("svelte").Component; type StoreRail = ReturnType; export default StoreRail;