UNPKG

318 BTypeScriptView Raw
1import React, { type CSSProperties, type ReactNode } from 'react';
2export interface PaneProps {
3 children?: ReactNode;
4 className?: string;
5 name: string;
6 pane?: string;
7 style?: CSSProperties;
8}
9export declare const Pane: React.ForwardRefExoticComponent<PaneProps & React.RefAttributes<HTMLElement>>;