import type { Photo } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type ModifyPhotoInput = { photoId: string; position?: number; hidden?: boolean; }; declare const modifyPhoto: (http: HttpClient) => { query: (input: ModifyPhotoInput) => Promise>; }; export default modifyPhoto;