import { UseQueryOptions } from '@tanstack/react-query'; import type { MetadataKeysResponseResponse } from '../responses/MetadataKeysResponseResponse'; import type { BadRequestResponse } from '../responses/BadRequestResponse'; import type { UnauthenticatedResponse } from '../responses/UnauthenticatedResponse'; import type { UnauthorizedResponse } from '../responses/UnauthorizedResponse'; import type { NotFoundResponse } from '../responses/NotFoundResponse'; import type { InternalServerErrorResponse } from '../responses/InternalServerErrorResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetMetadataKeysQueryQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; /** * @format int64 * @default 0 */ page?: number; /** * @format int64 * @default 20 */ size?: number; search_term?: string; } export type GetMetadataKeysOkResponse = ResponseWithPagination; export type GetMetadataKeysErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse; export interface GetMetadataKeysProps extends Omit, 'url'> { queryParams: GetMetadataKeysQueryQueryParams; } export declare function getMetadataKeys(props: GetMetadataKeysProps): Promise; /** * Retrieve a paginated list of all available metadata keys. */ export declare function useGetMetadataKeysQuery(props: GetMetadataKeysProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;