import type { ExtractPropTypes } from 'vue'; import type AudioPlayer from './audio-player.vue'; export declare const preloadLoad: string[]; export declare const audioFormat: string[]; export declare const audioPlayerProps: { readonly src: { readonly type: import("vue").PropType; readonly required: true; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly controls: import("ll-plus/es/utils").EpPropFinalized; readonly autoplay: import("ll-plus/es/utils").EpPropFinalized; readonly muted: import("ll-plus/es/utils").EpPropFinalized; readonly loop: import("ll-plus/es/utils").EpPropFinalized; readonly preload: import("ll-plus/es/utils").EpPropFinalized; readonly format: import("ll-plus/es/utils").EpPropFinalized; }; export type AudioPlayerProps = ExtractPropTypes; export type AudioPlayerInstance = InstanceType;