import { Point } from "../../common/types"; declare type Config = { start: Point; end: Point; }; declare function line({ start, end }: Config): Generator<{ x: number; y: number; }, void, unknown>; export default line;