declare const states: never[];
export type KendoSplitterPaneProps = {
    collapsible?: boolean;
    scrollable?: boolean;
    resizable?: boolean;
    flexBasis?: string;
    flex?: boolean;
    pinned?: boolean;
    unpinned?: boolean;
    tabbed?: boolean;
};
export type KendoSplitterPaneState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const SplitterPane: {
    (props: KendoSplitterPaneProps & KendoSplitterPaneState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    className: string;
    defaultOptions: {
        resizable: boolean;
        flex: boolean;
    };
};
export default SplitterPane;
