import { Variable } from '../../database/entities/Variable'; import { QueryRunner } from 'typeorm'; declare const _default: { createVariable: (newVariable: Variable, orgId: string) => Promise; deleteVariable: (variableId: string, workspaceId: string) => Promise; getAllVariables: (workspaceId: string, page?: number, limit?: number) => Promise; getVariableById: (variableId: string, workspaceId: string) => Promise; updateVariable: (variable: Variable, updatedVariable: Variable) => Promise; importVariables: (newVariables: Partial[], queryRunner?: QueryRunner) => Promise; }; export default _default;