declare const toPaymentType: (v: string) => "credit_card" | "check" | "cash"; export declare const toPaymentTypeStrict: (v?: string) => "credit_card" | "check" | "cash" | undefined; export type PaymentType = ReturnType; export {};