import React from 'react'; import type { RemotionAudioProps } from './props.js'; type AudioForPreviewProps = RemotionAudioProps & { readonly shouldPreMountAudioTags: boolean; readonly onDuration: (src: string, durationInSeconds: number) => void; readonly pauseWhenBuffering: boolean; readonly _remotionInternalNativeLoopPassed: boolean; readonly _remotionInternalStack: string | null; readonly _remotionDebugSeeking: boolean; readonly showInTimeline: boolean; readonly stack?: string | undefined; }; export declare const AudioForPreview: React.ForwardRefExoticComponent & React.RefAttributes>; export {};