import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; interface SlotProps extends React.HTMLAttributes { children?: React.ReactNode; } declare const Slot: React.ForwardRefExoticComponent>; declare const Slottable: ({ children }: { children: React.ReactNode; }) => react_jsx_runtime.JSX.Element; declare const Root: React.ForwardRefExoticComponent>; export { Root, Slot, type SlotProps, Slottable };