export type NarrationHtmlAudioPlayerProps = { src: string; /** Shown when the browser cannot play `` */ fallbackText: string; /** Outer wrapper max width (matches content entry player default) */ maxWidth?: string; "aria-label"?: string; }; /** * Native `` bar shared by the custom field (entry) and plugin home Narration test. */ export declare function NarrationHtmlAudioPlayer({ src, fallbackText, maxWidth, "aria-label": ariaLabel, }: NarrationHtmlAudioPlayerProps): import("react/jsx-runtime").JSX.Element;