import { PivotTableProps } from '../../../../props.js'; import { NlqTranslationResult } from '../../types.js'; import type { PivotTableInput } from '../types.js'; /** * Translates NLQ PivotTableJSON format to CSDK pivot table props. * Direction: JSON → CSDK * * @param input - PivotTableInput object containing pivotTableJSON and data schema context * @returns NlqTranslationResult with PivotTableProps or errors * @internal */ export declare const translatePivotTableFromJSON: (input: PivotTableInput) => NlqTranslationResult;