import React from 'react'; import type { CreateCellProps } from './cellTypes.js'; import { createSuspendingCell } from './createSuspendingCell.js'; export declare const createCell: typeof createSuspendingCell | typeof createNonSuspendingCell; /** * Creates a Cell out of a GraphQL query and components that track to its lifecycle. */ declare function createNonSuspendingCell, CellVariables extends Record>({ QUERY, beforeQuery, afterQuery, isEmpty, Loading, Failure, Empty, Success, displayName, }: CreateCellProps): React.FC; export {}; //# sourceMappingURL=createCell.d.ts.map