import { default as React } from '../../../node_modules/react'; import { TwinAnimationMixer } from '@easytwin/runtime'; interface BuildingsAnimationTimelineProps { layer: (id: number) => void; maxLayer: number; target: { mixer: TwinAnimationMixer; }; pause: () => void; start: (time: number) => void; preview: (time: number) => void; } export declare function BuildingsAnimationTimeline(props: BuildingsAnimationTimelineProps): React.JSX.Element; export {};