import React from "react"; /** * This positions the error tooltips on the correct cell. The same component is * reused for every cell, so only one error tooltip can ever be present */ export declare const ErrorTooltip: ({ renderErrorTooltip, errors, }: { renderErrorTooltip: (error: TError) => React.ReactNode; errors: (TError | null)[][]; }) => React.ReactPortal;