import { DTOFigmaComponent } from "@supernova-studio/client"; import { DesignComponentOrigin } from "../support/SDKDesignComponentOrigin"; import { Source } from "../support/SDKSource"; export declare abstract class DesignComponentBase { id: string; idInVersion: string; brandId: string; thumbnailUrl: string | null; svgUrl: string | null; name: string; description: string | null; origin: DesignComponentOrigin | null; createdAt: Date | null; updatedAt: Date | null; constructor(model: DTOFigmaComponent, sources: Array); }