import type { ReactNode } from 'react'; type SlotChildProps = { asChild?: boolean; child: ReactNode; children: ReactNode | ((child: ReactNode) => ReactNode); }; declare const SlotChild: import("react").ForwardRefExoticComponent>; export type { SlotChildProps }; export { SlotChild };