export default AudioPicker; /** * Allows a user to select or remove audio using the media modal or via direct * URL entry. This component is a thin wrapper around `MediaPicker` and sets the * allowed types for the `MediaPicker` to `audio` as well as provides a custom * preview component that embeds the selected audio in the editor. */ declare function AudioPicker({ className, onReset, onUpdate, onUpdateURL, value, valueURL, }: { className: any; onReset: any; onUpdate: any; onUpdateURL: any; value: any; valueURL: any; }): import("react/jsx-runtime").JSX.Element; declare namespace AudioPicker { namespace defaultProps { let className: string; let onUpdateURL: null; let valueURL: string; } namespace propTypes { let className_1: PropTypes.Requireable; export { className_1 as className }; export let onReset: PropTypes.Validator<(...args: any[]) => any>; export let onUpdate: PropTypes.Validator<(...args: any[]) => any>; let onUpdateURL_1: PropTypes.Requireable<(...args: any[]) => any>; export { onUpdateURL_1 as onUpdateURL }; export let value: PropTypes.Validator; let valueURL_1: PropTypes.Requireable; export { valueURL_1 as valueURL }; } } import PropTypes from 'prop-types'; //# sourceMappingURL=index.d.ts.map