import React from "react"; declare module "react" { interface ReactElement { $$typeof?: symbol | string; } } export type Usable = PromiseLike | React.Context; interface SlotProps extends React.HTMLAttributes { children?: React.ReactNode; } export declare function createSlot(ownerName: string): React.ForwardRefExoticComponent>; declare const Slot: React.ForwardRefExoticComponent>; interface SlottableProps { children: React.ReactNode; } interface SlottableComponent extends React.FC { __lokeId: symbol; } export declare function createSlottable(ownerName: string): SlottableComponent; declare const Slottable: SlottableComponent; export { Slot, Slottable, Slot as Root, }; export type { SlotProps };