///
import React from "react";
import { IBulkEditProps } from "../../IBulkEditProps";
export declare const testData: IBulkEditProps<{
key: string;
data: string[];
}, {
key: string;
data: string[];
}, string>;
export declare const createTestTable: (numRows?: number) => {
getRows: () => {
key: string;
data: string[];
}[];
getProps: () => {
outerRows: {
key: string;
data: string[];
}[];
onChange: jest.Mock;
rows: {
key: string;
data: string[];
}[];
errors: (string | null)[][];
columnProps: import("../..").IColumnProps<{
key: string;
data: string[];
}, {
key: string;
data: string[];
}, string>[];
applyPastes: (pastes: import("../..").IPaste<{
key: string;
data: string[];
}, {
key: string;
data: string[];
}>[]) => {
key: string;
data: string[];
}[];
onUndo: () => void;
onRedo: () => void;
rowHeight: number;
numStickyColumns: number;
numUnselectableColumns: number;
headers: {
height: number;
borderTopColor?: string | undefined;
borderBottomColor?: string | undefined;
row: {
key: string;
component: React.ReactNode;
columnSpan: number;
borderLeftColor?: string | undefined;
borderRightColor?: string | undefined;
}[];
}[];
renderErrorTooltip: (error: string) => React.ReactNode;
theme?: import("../..").ITheme | undefined;
};
render: () => void;
};