import { type ComponentType } from "react"; import { type IFilter, type ISeparators } from "@gooddata/sdk-model"; interface IInsightDescriptionProps { description: string; readOnly?: boolean; setDescription: (newDescription: string) => void; LoadingComponent?: ComponentType; insightFilters?: IFilter[]; separators?: ISeparators; } export declare function InsightDescription({ description, setDescription, readOnly, LoadingComponent, insightFilters, separators }: IInsightDescriptionProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=InsightDescription.d.ts.map