import type { Contract, FinalExecutionOutcome } from "near-kit"; export type GREETING_CONTRACT_TYPE = Contract<{ view: { get_greeting: () => Promise; }; call: { set_greeting: (args: { greeting: string; }) => Promise; }; }>; //# sourceMappingURL=contract_greeting.d.ts.map