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