import React from 'react';
import { Key } from './interface';
declare const CascadeContext: React.Context<{
    expandItem: (expandedKey: Key[]) => void;
    selectItem: (selectedKey: Key[]) => void;
}>;
export default CascadeContext;
