import type { CardTokenResponse } from '../commonTypes';
import type { CardTokenGetClient } from './types';
/**
 * Retrieve a single card token by its unique identifier.
 *
 * @param id     - Card token identifier to look up.
 * @param config - SDK configuration including the access token.
 * @returns The full card token resource.
 */
export default function get({ id, config }: CardTokenGetClient): Promise<CardTokenResponse>;
