import { type ComponentType } from "react"; import { type OnError, type OnLoadingChanged } from "@gooddata/sdk-ui"; import { type DescriptionExportData } from "../../export/types.js"; /** * @alpha */ export interface IDashboardLayoutSectionHeaderDescriptionProps { description: string; exportData?: DescriptionExportData; LoadingComponent?: ComponentType; onLoadingChanged?: OnLoadingChanged; onError?: OnError; } export declare function DashboardLayoutSectionHeaderDescription({ description, exportData, LoadingComponent, onLoadingChanged, onError }: IDashboardLayoutSectionHeaderDescriptionProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=DashboardLayoutSectionHeaderDescription.d.ts.map