import { InputValue } from './interface';
export default class ListValue implements InputValue<InputValue[]> {
    private values;
    constructor({ values }: {
        values: Array<InputValue<any>>;
    });
    isScalar(): boolean;
    getType(): any;
    getValue(): Array<InputValue<any>>;
}
