import { NewProblem, Problem } from '@argoncs/types'; export declare function createDomainProblem(newProblem: NewProblem, domainId: string): Promise<{ problemId: string; }>; export declare function updateDomainProblem(problemId: string, domainId: string, problem: Partial): Promise<{ modified: boolean; }>; export declare function deleteDomainProblem(problemId: string, domainId: string): Promise; export declare function fetchDomainProblems(domainId: string, query?: Record): Promise; //# sourceMappingURL=problem.services.d.ts.map