/**
 * Enum for storing stripe type of connected accounts
 */
declare enum StripeAccountTypes {
    STANDARD = "standard",
    EXPRESS = "express",
    CUSTOM = "custom"
}
export { StripeAccountTypes as default };
