import React from "react"; interface BasicTablePaneProps { fullWidth?: boolean; hover?: boolean; striped?: boolean; className?: string; children: React.ReactNode; [x: string]: any; } export declare const BasicTablePane: ({ fullWidth, hover, striped, className, children, ...props }: BasicTablePaneProps) => React.JSX.Element; export {};