/** Indicates a card's prepaid type, such as `NOT_PREPAID` or `PREPAID`. */ export declare const CardPrepaidType: { readonly UnknownPrepaidType: "UNKNOWN_PREPAID_TYPE"; readonly NotPrepaid: "NOT_PREPAID"; readonly Prepaid: "PREPAID"; }; export type CardPrepaidType = (typeof CardPrepaidType)[keyof typeof CardPrepaidType];