import { type ComponentType } from "react"; import { type GoodDataSdkError, type IErrorProps } from "@gooddata/sdk-ui"; /** * @internal */ export interface IInsightErrorProps { error: GoodDataSdkError; ErrorComponent?: ComponentType; height?: number | string | null; clientHeight?: number; } /** * @internal */ export declare function InsightError({ error, ErrorComponent, height, clientHeight }: IInsightErrorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=InsightError.d.ts.map