import type { PreferenceGetClient } from './types';
import type { PreferenceResponse } from '../../../clients/preference/commonTypes';
/**
 * Retrieve an existing Checkout Pro preference by its unique identifier.
 *
 * @returns The full preference resource.
 */
export default function get({ id, config }: PreferenceGetClient): Promise<PreferenceResponse>;
