/** * Slot — compile-time placeholder for layout content injection. * * The compiler replaces Slot nodes with the page's tree before bundling. * If a Slot reaches the browser, it renders its children as a fallback * (e.g. during local dev hot-reload before recompilation). */ interface SlotProps { name?: string; children?: React.ReactNode; } export declare function Slot({ children }: SlotProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Slot.d.ts.map