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