import { type ReactNode } from "react"; import { type ISeparators } from "@gooddata/sdk-model"; import { type IKdaDefinition } from "../types.js"; export interface IKdaProps { children: ReactNode; definition: IKdaDefinition; separators?: ISeparators; includeTags?: string[]; excludeTags?: string[]; } export declare function KdaProvider({ children, definition, separators, includeTags, excludeTags }: IKdaProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Kda.d.ts.map