import type { FabricObject } from '../shapes/Object/FabricObject'; export type SVGParsingOutput = { objects: (FabricObject | null)[]; options: Record; elements: Element[]; allElements: Element[]; }; export type TSvgReviverCallback = (element: Element, fabricObject: FabricObject) => void; export type CSSRules = Record>; //# sourceMappingURL=typedefs.d.ts.map