import type { Code, CodePayload } from '../../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../../types/index.ts'; export type ModifyCodeInput = { houseId: string; codeId: string; payload: CodePayload; }; declare const modifyCode: (http: HttpClient) => { query: (input: ModifyCodeInput) => Promise>; }; export default modifyCode;