import type { TNftFamily } from './nft.types.js'; /** * Build commands to create the nftables table and NAT chains (prerouting + postrouting). */ export declare function buildTableSetup(tableName: string, family?: TNftFamily): string[]; /** * Build commands to create filter chains (input, forward, output). */ export declare function buildFilterChains(tableName: string, family?: TNftFamily): string[]; /** * Build command to delete the entire nftables table. */ export declare function buildTableCleanup(tableName: string, family?: TNftFamily): string[];