import type { Attribs, SamplingOpts } from "./api.js"; import { ComplexPolygon } from "./api/complex-polygon.js"; import type { Path } from "./api/path.js"; /** * Converts given path into a {@link ComplexPolygon}, using `opts` to control * the conversion (via {@link asPolygon}). If no new `attribs` are given, those * of the path will be used (shallow copy). * * @param path * @param opts * @param attribs */ export declare const complexPolygonFromPath: (path: Path, opts?: number | Partial, attribs?: Attribs) => ComplexPolygon; //# sourceMappingURL=complex-polygon-from-path.d.ts.map