import * as React from 'react'; interface SlotProps extends React.HTMLAttributes { children?: React.ReactNode; } /** * Slot component for composition pattern. * Merges props and refs from the Slot to its immediate child. * Inspired by Radix UI's Slot implementation. */ export declare const Slot: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Slot.d.ts.map