import { Environments, V1Network } from './bitgo'; export { Environments }; /** * Set the global Bitcoin network. Used for v1 only. * * @deprecated */ export declare function setNetwork(network: V1Network): void; /** * Get the global Bitcoin network. Used for v1 only. * * @deprecated */ export declare function getNetwork(): V1Network; /** * Helper function to validate the input parameters to an SDK method. * Only validates for strings - if parameter is different, check that manually * * @deprecated * @param params dictionary of parameter key-value pairs * @param expectedParams list of expected string parameters * @param optionalParams list of optional string parameters * @param optionalCallback if callback provided, must be a function * @returns true if validated, throws with reason otherwise */ export declare function validateParams(params: object, expectedParams: string[], optionalParams?: string[], optionalCallback?: (err: Error, res: R) => void): boolean; //# sourceMappingURL=common.d.ts.map