import { FC, HTMLAttributes, ReactNode } from 'react'; export interface SlotProps extends HTMLAttributes, Record { children: ReactNode; } export declare const Slot: FC;