import { ReactNode, HTMLAttributes, ElementType, JSX } from 'react'; interface SlotProps extends Omit, 'children'> { asChild?: boolean; child: ReactNode; children: (child: ReactNode) => JSX.Element; defaultComponent: ElementType; } declare const Slot: import("react").ForwardRefExoticComponent>; export { Slot }; export type { SlotProps };