UNPKG

@difizen/mana-core

Version:

11 lines 404 B
import type { Newable } from '@difizen/mana-common'; import type { ReactNode } from 'react'; import type { View } from './view-protocol'; export interface Props { name: string; viewProps?: undefined | Record<string, any>; children?: undefined | ReactNode | ReactNode[]; slotView?: undefined | Newable<View>; } export declare const Slot: React.FC<Props>; //# sourceMappingURL=slot.d.ts.map