import { Allotment, AllotmentHandle } from 'allotment'; import { SplitPaneStyles } from './split-pane.css'; import * as React from 'react'; interface SplitProps extends React.ComponentPropsWithoutRef, Omit> { } declare const Split: React.ForwardRefExoticComponent>; interface SplitPaneProps extends React.ComponentPropsWithoutRef, Omit> { } declare const SplitPane: React.ForwardRefExoticComponent>; interface SplitPanelProps extends React.ComponentPropsWithoutRef<'div'>, SplitPaneStyles { asChild?: boolean; } declare const SplitPanel: React.ForwardRefExoticComponent>; export { Split, SplitPane, SplitPanel }; export type { AllotmentHandle as SplitHandle }; //# sourceMappingURL=split-pane.d.ts.map