import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
/** Renders an HTML `<audio>` element. Accepts optional attributes and child content. */
declare const Audio: import("svelte").Component<Props, {}, "">;
type Audio = ReturnType<typeof Audio>;
export default Audio;
