import * as React from 'react';
import { type DataFrame, type CSVConfig } from '@grafana/data';
/**
 * @deprecated
 *
 * https://developers.grafana.com/ui/latest/index.html?path=/docs/inputs-deprecated-tableinputcsv--docs
 */
export declare const TableInputCSV: React.FunctionComponent<{
    text: string;
    width: string | number;
    height: string | number;
    config?: CSVConfig | undefined;
    onSeriesParsed: (data: DataFrame[], text: string) => void;
}>;
