import React from 'react'; import { TOption } from '../../types'; interface Props { onChange(event: React.ChangeEvent): void; className?: string; tabs: Array> | null; active: string; } export declare function Pane({ onChange, className, tabs, active }: Props): JSX.Element | null; export {};