import { UseQueryOptions } from '@tanstack/react-query'; import type { ListFilesResponseV3Response } from '../responses/ListFilesResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ListFilesV3QueryQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; registry_id?: string; package_id?: string; version_id?: string; recipe_revision_id?: string; package_revision_id?: string; /** * @format int64 * @default 0 */ page?: number; /** * @format int64 * @default 20 */ size?: number; sort?: string; search_term?: string; } export type ListFilesV3OkResponse = ResponseWithPagination; export type ListFilesV3ErrorResponse = ErrorV3; export interface ListFilesV3Props extends Omit, 'url'> { queryParams: ListFilesV3QueryQueryParams; } export declare function listFilesV3(props: ListFilesV3Props): Promise; /** * List files. */ export declare function useListFilesV3Query(props: ListFilesV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;