declare const states: ("focus" | "hover")[];
export type KendoSplitterSplitbarProps = {
    orientation?: "horizontal" | "vertical";
    draggable?: boolean;
    collapsePrev?: boolean;
    collapseNext?: boolean;
};
export type KendoSplitterSplitbarState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const SplitterSplitbar: {
    (props: KendoSplitterSplitbarProps & KendoSplitterSplitbarState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: ("focus" | "hover")[];
    options: {};
    className: string;
    defaultOptions: {
        orientation: string;
        draggable: boolean;
    };
};
export default SplitterSplitbar;
