import { TransformAtomType } from '../data-type';
/**
 * @interface ISectionStart
 * @param {string} coordZRef
 * @param {string} strokeColor
 * @param {number} strokeWeight
 * @param {boolean} invert
 * @param {TransformAtomType} transform
 */
export interface ISectionStart {
    coordZRef: string;
    strokeColor: string;
    strokeWeight: number;
    invert: boolean;
    transform: TransformAtomType;
}
