import { Address, Struct, Bytes } from './'; export default class Property { deciderAddress: Address; inputs: Bytes[]; constructor(deciderAddress: Address, inputs: Bytes[]); toStruct(): Struct; static getParamType(): Struct; static fromStruct(_struct: Struct): Property; appendInput(inputs: Bytes[]): Property; }