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 AddCodeInput = { houseId: string; payload: CodePayload; }; declare const addCode: (http: HttpClient) => { query: (input: AddCodeInput) => Promise>; }; export default addCode;