import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; import { CursorPaginationAfter, type CursorPaginationAfterParams } from "../../pagination.js"; export declare class Values extends APIResource { /** * Lists all distinct values for a given tag key, optionally filtered by resource * type. */ list(tagKey: string, params: ValueListParams, options?: Core.RequestOptions): Core.PagePromise; } export declare class ValueListResponsesCursorPaginationAfter extends CursorPaginationAfter { } export type ValueListResponse = string; export interface ValueListParams extends CursorPaginationAfterParams { /** * Path param: Identifier. */ account_id: string; /** * Query param: Filter by resource type. */ type?: 'access_application' | 'access_application_policy' | 'access_group' | 'account' | 'ai_gateway' | 'alerting_policy' | 'alerting_webhook' | 'api_gateway_operation' | 'cloudflared_tunnel' | 'custom_certificate' | 'custom_hostname' | 'd1_database' | 'dns_record' | 'durable_object_namespace' | 'gateway_list' | 'gateway_rule' | 'image' | 'kv_namespace' | 'managed_client_certificate' | 'queue' | 'r2_bucket' | 'resource_share' | 'stream_live_input' | 'stream_video' | 'worker' | 'worker_version' | 'zone'; } export declare namespace Values { export { type ValueListResponse as ValueListResponse, ValueListResponsesCursorPaginationAfter as ValueListResponsesCursorPaginationAfter, type ValueListParams as ValueListParams, }; } //# sourceMappingURL=values.d.ts.map