import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetOwnerGeneralRentalConditionResponse = Response<{ id: string; type: string; content: string; }, undefined, ApiError>; declare const getOwnerGeneralRentalCondition: (http: HttpClient) => { query: () => Promise>; }; export default getOwnerGeneralRentalCondition;