import { GetAgentInboxesInput, GetInboxesInput } from './types'; export declare const getInboxes: ({ nodeAddress, token }: GetInboxesInput) => Promise; export declare const getInboxesWithPagination: ({ nodeAddress, token, limit, offset, show_hidden, }: GetInboxesInput) => Promise; export declare const getAgentInboxes: ({ nodeAddress, token, agentId, showHidden, }: GetAgentInboxesInput) => Promise;