import { Value } from './value';
export interface BooleanValue extends Value {
    value?: boolean;
}
