import { SlotsProps } from "./types.cjs"; //#region src/Slots/Slots.d.ts /** * Marks a subtree as a slot boundary. * * `useSlots` treats nested `Slots` components as opaque children and does not * collect `Template` elements inside them. This lets composed slot-aware * components keep their own slot scope. * * @param props - Slot boundary props. * @returns The original children. * * @example * ```tsx * * * * ``` */ declare function Slots(props: SlotsProps): import("react").ReactNode; //#endregion export { Slots }; //# sourceMappingURL=Slots.d.cts.map