import { ConetstProblemList, Contest, NewContest } from '@argoncs/types'; export declare function createContest(newContest: NewContest, domainId: string): Promise<{ contestId: string; }>; export declare function fetchContest(contestId: string): Promise; export declare function fetchDomainContests(domainId: string): Promise; export declare function updateContest(contestId: string, contest: Partial): Promise<{ modified: boolean; }>; export declare function fetchContestProblemList(contestId: string): Promise; export declare function syncProblemToContest(contestId: string, problemId: string): Promise<{ modified: boolean; }>; export declare function removeProblemFromContest(contestId: string, problemId: string): Promise; //# sourceMappingURL=contest.services.d.ts.map