import { HTMLAttributes } from 'react';
export type PaneProps = {
    id: string;
    defaultWidth?: number;
    minWidth?: number;
    maxWidth?: number;
    resizable: 'left' | 'right';
} & HTMLAttributes<HTMLDivElement>;
export declare function Pane({ id, children, resizable, defaultWidth, minWidth, maxWidth, ...props }: PaneProps): import("react/jsx-runtime").JSX.Element;
