import { QueryOrderSmsLogsDto } from '@escapenavigator/types/dist/profile/profile-sms/dto/query-order-sms-logs.dto'; import { ProfileSmsRecipientTypeEnum } from '@escapenavigator/types/dist/profile/profile-sms/profile-sms-recipient-type.enum'; import { ProfileSmsLogRO } from '@escapenavigator/types/dist/profile/profile-sms/ro/profile-sms-log.ro'; import { ApiMethodDeclaration } from '../..'; type ParamsData = { clientId: number; limit?: QueryOrderSmsLogsDto['limit']; recipientType?: ProfileSmsRecipientTypeEnum; }; type ResponseData = ProfileSmsLogRO[]; export declare const querySmsLogsByClient: ApiMethodDeclaration; export {};