import { SplitterProps, ResizeTriggerProps, PanelProps } from './splitter.types.js'; import '@zag-js/core'; import '@zag-js/types'; import './utils/registry.js'; declare const props: (keyof SplitterProps)[]; declare const splitProps: >(props: Props) => [Partial, Omit]; declare const panelProps: "id"[]; declare const splitPanelProps: (props: Props) => [PanelProps, Omit]; declare const resizeTriggerProps: (keyof ResizeTriggerProps)[]; declare const splitResizeTriggerProps: (props: Props) => [ResizeTriggerProps, Omit]; export { panelProps, props, resizeTriggerProps, splitPanelProps, splitProps, splitResizeTriggerProps };