import React from 'react'; interface SlotProps extends React.ComponentProps<'div'> { children?: React.ReactNode; } declare const Slot: { (props: SlotProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const Slottable: ({ children }: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; declare const Root: { (props: SlotProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Slot, Slottable, Root }; export type { SlotProps }; //# sourceMappingURL=Slot.d.ts.map