import "./index.less"; import React from "react"; export interface Pane { title: string; uuid: string; closable: boolean; } interface IProps { panes: Pane[]; selectedKey?: string; onChange: (key: any) => void; onClose: (key: any) => void; onCloseAll: () => void; } export default function ClosableTabs(props: IProps): React.JSX.Element; export {};