/** * Animation Component Editor * Dedicated editor for Animation component with clips and tracks list * Extracted from ComponentInspector for better separation of concerns */ export interface AnimationComponentEditorProps { eid: number; animationData: any; /** Body data for resolving part tags */ bodyData?: any; } /** * AnimationComponentEditor - Dedicated editor for Animation component */ export declare function AnimationComponentEditor({ eid, animationData, bodyData }: AnimationComponentEditorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AnimationComponentEditor.d.ts.map