import type { TruthTable } from './types.js';
/**
 * fills each missing row of a table
 * with the given value
 */
export declare function fillTruthTable(truthTable: TruthTable, inputLength: number, value: number): void;
