import { Arg } from "../types/misc";
export declare function boolAnd(args: Arg[]): {
    foundBoolean: boolean;
    result: boolean;
};
export declare function boolOr(args: Arg[]): {
    foundBoolean: boolean;
    result: boolean;
};
