/** * @enum environment */ export declare enum environment { sandbox = "sandbox", production = "production" } /** * Project wide constants * * @class Constants */ export declare class Constants { static readonly FINTECTURESDKVERSION: string; static readonly DEFAULTENVIRONMENT: string; static readonly SANDBOXENVIRONMENT: string; static readonly PRODUCTIONENVIRONMENT: string; static readonly DECOUPLEDMODEL: string; static readonly SIGNEDHEADERPARAMETERLIST: string[]; static readonly CONNECTHEADERPARAMETERLIST: string[]; }