import { IResponse, IListResponse, IContext } from '../../types'; import { IGenAiAgentApiKey } from '..'; export interface IListAgentKeysApiResponse extends IListResponse { api_key_infos: IGenAiAgentApiKey[]; } export interface IListAgentKeysApiRequest { agent_uuid: string; page?: number; per_page?: number; } export type ListAgentKeysResponse = IResponse; export declare const listAgentKeys: ({ httpClient }: IContext) => ({ agent_uuid, page, per_page }: IListAgentKeysApiRequest) => Promise>;