import React from 'react'; interface PropsTypes { title?: string; children?: React.ReactElement; direction?: 'center' | 'left' | 'right'; expand?: boolean; onClear?: boolean; } export declare const Spliter: ({ children, title, direction, expand }: PropsTypes) => import("react/jsx-runtime").JSX.Element; export {};