UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

12 lines (11 loc) 351 B
import { ComponentType, HTMLProps, PropsWithChildren } from 'react'; type Slots = { Provider: ComponentType<PropsWithChildren<{}>>; Portal: ComponentType<HTMLProps<HTMLDivElement>>; Slot: ComponentType<PropsWithChildren<{}>>; useSlots: () => { shown: boolean; }; }; export declare function createSlots(): Slots; export {};