interface StorageSchemaDefinition {
    name: string;
    keyType: string;
    valueType: string;
}
interface StorageSchema {
    [key: string]: StorageSchemaDefinition;
}
export declare class Storage {
    constructor(from: string, contract: any, schema: StorageSchema);
}
export {};
