import { Stage } from '@revideo/core'; import { HTMLAttributes } from 'preact'; import { MutableRef } from 'preact/hooks'; export interface StageViewProps extends HTMLAttributes { forwardRef?: MutableRef; stage: Stage; } export declare function StageView({ stage, className, forwardRef, ...rest }: StageViewProps): import("preact").JSX.Element; //# sourceMappingURL=StageView.d.ts.map