import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; import { CursorPaginationAfter, type CursorPaginationAfterParams } from "../../pagination.js"; export declare class Keys extends APIResource { /** * Lists all distinct tag keys used across resources in an account. */ list(params: KeyListParams, options?: Core.RequestOptions): Core.PagePromise; } export declare class KeyListResponsesCursorPaginationAfter extends CursorPaginationAfter { } export type KeyListResponse = string; export interface KeyListParams extends CursorPaginationAfterParams { /** * Path param: Identifier. */ account_id: string; } export declare namespace Keys { export { type KeyListResponse as KeyListResponse, KeyListResponsesCursorPaginationAfter as KeyListResponsesCursorPaginationAfter, type KeyListParams as KeyListParams, }; } //# sourceMappingURL=keys.d.ts.map