import { ApiListPromise } from '@sinch/sdk-client'; import { GetInboundMessageRequestData, InboundMessageResponse, ListInboundMessagesRequestData } from '../../../models'; import { SmsDomainApi } from '../sms-domain-api'; import { LazySmsApiClient } from '../sms-service'; export declare class InboundsApi extends SmsDomainApi { constructor(lazyClient: LazySmsApiClient); /** * List incoming messages * With the list operation, you can list all inbound messages that you have received. This operation supports pagination. Inbounds are returned in reverse chronological order. * @param { ListInboundMessagesRequestData } data - The data to provide to the API call. * @return {ApiListPromise} */ list(data?: ListInboundMessagesRequestData): ApiListPromise; /** * Retrieve inbound message * This operation retrieves a specific inbound message with the provided inbound ID. * @param { GetInboundMessageRequestData } data - The data to provide to the API call. */ get(data: GetInboundMessageRequestData): Promise; }