/**
 * Interface representing the parameters required to create a card.
 *
 * @property customer_id - Identification of the customer.
 * @property default - Indicates if the card is the default for the account. Use `1` for yes and `0` for no.
 * @property name - Name of the cardholder.
 * @property number - Card number.
 * @property expiration_month - Expiration month of the card, must contain 2 digits.
 * @property expiration_year - Expiration year of the card, must contain 4 digits.
 * @property security_code - Security code of the card.
 */
export interface CreateCardParams {
    customer_id: string;
    default?: 0 | 1;
    name: string;
    number: string;
    expiration_month: string;
    expiration_year: string;
    security_code: string;
}
//# sourceMappingURL=CreateCardParams.d.ts.map