/** * Given an array of integers representing lane minimum * vertical clearance in inches, creates a table * displaying these values. * Headers will be "Lane" followed by array index + 1. * (E.g., item zero in array will be labeled as "Lane 1") * @param laneVCs An array of lane vertical clearance integers. */ export declare function createLaneVCTable(laneVCs: number[]): HTMLTableElement;