/**
 * Shell Card Management APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
/** This class holds the PIN Reminder References */
export interface PINReminderReference {
    /** Card Id */
    cardId?: number | null;
    /** PAN ID */
    pANID?: number | null;
    /** PAN */
    pAN?: number | null;
    /**
     * Expiry date of the card.
     * Mandatory if Either PAN or PANID is passed, else optional.
     * Format: yyyyMMdd
     */
    cardExpiryDate?: string | null;
    /** Individual card pin reminder reference number for the Pin Reminder request. */
    referenceId?: number;
}
export declare const pINReminderReferenceSchema: Schema<PINReminderReference>;
