import { Address } from './Address';
import { CopperInfo } from './CopperInfo';
/** Copper line details */
export interface Line {
    /** Address */
    address: Address;
    /** Copper information */
    copperInfo: CopperInfo;
    /** Line number */
    lineNumber: string;
}
//# sourceMappingURL=Line.d.ts.map