import React from "react"; //#region src/lib/slots.d.ts /** Existing union (unchanged) */ type SlotValue> = C | string | Partial>; /** Utility: concrete React elements for every slot */ type SlotElements = { [K in keyof S]: React.ReactElement }; type WithSlots>, Rest = {}> = { [K in keyof S]?: SlotValue } & { children?: (props: SlotElements & Rest) => React.ReactNode; } & Omit; //#endregion export { SlotValue, WithSlots }; //# sourceMappingURL=slots.d.cts.map