import type { AudioProps } from './index-types';
export declare const Audio: {
    (props: AudioProps): import("react/jsx-runtime").JSX.Element;
    serialize: (audioProps: {
        src: string;
    }) => {
        audio: string;
    };
};
