import { Identifier } from '@dashevo/wasm-dpp'; import { Platform } from '../../Platform'; declare type ContractIdentifier = string | Identifier; /** * Get contracts from the platform * * @param {Platform} this - bound instance class * @param {ContractIdentifier} identifier - identifier of the contract to fetch * @returns contracts */ export declare function get(this: Platform, identifier: ContractIdentifier): Promise; export default get;