import React from 'react'; import type { CreateCellProps } from './cellTypes.js'; type CreateServerCellProps = Omit, 'QUERY' | 'Failure'> & { data: (variables?: AnyObj) => any; Failure?: React.ComponentType<{ error: unknown; queryResult: { refetch: (variables: CellProps) => AnyObj; }; }>; }; type AnyObj = Record; export declare function createServerCell(createCellProps: CreateServerCellProps): React.FC; export {}; //# sourceMappingURL=createServerCell.d.ts.map