import { RenderSectionProps } from './common';
export interface ErrorSectionData {
    errorMessage?: string;
    errorType: string;
}
export declare function ErrorSection({ isLoading, sectionData, cssClassName }: RenderSectionProps<ErrorSectionData>): import("react/jsx-runtime").JSX.Element | null;
