import { Type } from "./Type";
export default class BooleanType implements Type {
    serialize(): Object;
    static deserialize(raw: Object): BooleanType;
}
