import { Component, EditableOnCellProps } from '../../interface';
interface CellDefaultProps<RecordType> extends EditableOnCellProps<RecordType> {
    cellComponent: Component<any>;
}
export default function CellDefault<RecordType>({ cellComponent: CellComponent, ...restProps }: CellDefaultProps<RecordType>): import("react/jsx-runtime").JSX.Element;
export {};
