export declare const Product: { DEPOSIT: string; VERIFY: string; IDENTIFY: string; WITHHOLD: string; PRESENT: string; SWITCH: string; MANAGE: string; }; export declare const Scope: { USERLINK: string; EMPLOYERLINK: string; PAYLINK: string; }; export declare const PresentationStyles: { readonly formSheet: "formSheet"; readonly fullScreen: "fullScreen"; }; export type PresentationStyleIOS = (typeof PresentationStyles)[keyof typeof PresentationStyles]; export interface TransactEnvironment { environment: 'production' | 'sandbox' | 'custom'; transactPath?: string; apiPath?: string; } export declare const Environment: { production: TransactEnvironment; sandbox: TransactEnvironment; custom: (transactPath: string, apiPath: string) => TransactEnvironment; }; export declare const DeferredPaymentMethodStrategy: { SDK: string; API: string; }; export declare const App: { readonly PAY_NOW: "pay-now"; readonly EXPENSES: "expenses"; readonly ORDERS: "orders"; readonly SUGGESTIONS: "suggestions"; }; export type AppType = (typeof App)[keyof typeof App] | (string & {}); export declare const Step: { readonly ADD_CARD: "add-card"; readonly LOGIN_COMPANY: "login-company"; readonly LOGIN_PAYROLL: "login-payroll"; readonly SEARCH_COMPANY: "search-company"; readonly SEARCH_PAYROLL: "search-payroll"; readonly ACCOUNT: "account"; }; export type StepType = (typeof Step)[keyof typeof Step] | (string & {}); //# sourceMappingURL=constants.d.ts.map