export declare namespace ExternalPaymentModels { enum TransactionState { PENDING = "PENDING", COMPLETED = "COMPLETED", ERRORED = "ERRORED", DEFAULT = "DEFAULT", } class ActionButtonProp { name: string; shouldHide?: boolean; constructor(name: string, shouldHide?: boolean); } }