import { BaseGate, Input, Output, TruthTable } from "./BaseGate";
export declare class OrGate extends BaseGate {
    setOutput(): void;
    setTruthTable(): void;
    static getTruthTable(inputs?: number): TruthTable;
    checkInputValidity(input: Input): void;
}
export declare function or(input: Input): Output;
