import { DataSet } from "@systemic-games/pixels-core-animation"; import EditAnimation from "./EditAnimation"; import EditPattern from "./EditPattern"; import EditProfile from "./EditProfile"; export default class EditDataSet { readonly patterns: Readonly[]; readonly rgbPatterns: Readonly[]; readonly animations: Readonly[]; readonly profile: Readonly; brightness: number; constructor(opt?: { patterns?: Readonly[]; rgbPatterns?: Readonly[]; animations?: Readonly[]; profile?: Readonly; brightness?: number; }); getPatternTrackOffset(pattern: Readonly): number; getPatternRGBTrackOffset(pattern?: Readonly): number; toDataSet(): DataSet; } //# sourceMappingURL=EditDataSet.d.ts.map