@gamesberry/karmyc-core
Version:
A flexible and powerful layout management system for React applications
11 lines (10 loc) • 446 B
TypeScript
import React, { Dispatch, SetStateAction } from "react";
import { AreaComponentProps, ResizePreviewState } from "../types/areaTypes";
interface AreaComponentOwnProps extends AreaComponentProps {
Component: React.ComponentType<any>;
setResizePreview: Dispatch<SetStateAction<ResizePreviewState | null>>;
isChildOfStack: boolean;
nbOfLines?: number;
}
export declare const AreaComponent: React.FC<AreaComponentOwnProps>;
export {};