///
import { SSCSchemaConfig } from "algosdk";
import { StackElem } from "../types";
/**
* Description: assert if the given key-value pairs are valid by schema
* @param keyValue: list of key-value pairs (state data)
* @param schema: permissible local/global state schema
*/
export declare function assertValidSchema(keyValue: Map, schema: SSCSchemaConfig): void;