import { AnyComponent } from './any-component'; export declare type CompProps = { lazyComponent: () => Promise<{ default: AnyComponent; }>; } | { component: AnyComponent; }; export declare type StillProps = { width: number; height: number; id: string; defaultProps?: T; } & CompProps; declare type CompositionProps = StillProps & { fps: number; durationInFrames: number; }; export declare const Composition: ({ width, height, fps, durationInFrames, id, defaultProps: props, ...compProps }: CompositionProps) => null; export {}; //# sourceMappingURL=Composition.d.ts.map