export declare const Cell: ({ cell: { value, isGrouped }, column, row, webComponentsReactProperties }: {
    cell: {
        value?: string;
        isGrouped: any;
    };
    column: any;
    row: any;
    webComponentsReactProperties: any;
}) => import("react/jsx-runtime").JSX.Element;
