import type { ServiceDataParams, ServiceApiParams } from '../../common'; export type CreateTokenData = { IsSandbox: boolean; Holder: string; CardNumber: string; ExpirationDate: `${DateMonthType}/${DateYearType}`; SecurityCode: NumericalString; }; export type CreateTokenResponse = { Token: string; }; export declare function createToken({ payment }: ServiceApiParams, { data }: ServiceDataParams<{ data: CreateTokenData; }>): Promise;