import { FetcherFunc } from './types'; import { ErrorInstance } from './api'; import { CSSProperties } from 'react'; export declare const TableContract: ({ fetcher, stylesBeforeLoad, onRowMutationError, }: { fetcher: FetcherFunc; stylesBeforeLoad?: CSSProperties; onRowMutationError?: (error: ErrorInstance) => void; }) => import("react/jsx-runtime").JSX.Element;