interface AudioTrack {
    src: string;
    title: string;
    artist?: string;
    thumbnail?: string;
    duration?: string;
}
interface AudioGalleryProps {
    tracks?: AudioTrack[];
    className?: string;
    galleryTitle?: string;
    primaryColor?: string;
    backgroundColor?: string;
    textColor?: string;
    secondaryColor?: string;
    autoplay?: boolean;
    borderColor?: string;
    border?: number;
    maxWidth?: number;
    loop?: boolean;
}
export declare function AudioGallery({ tracks, className, galleryTitle, primaryColor, backgroundColor, textColor, secondaryColor, border, borderColor, maxWidth, autoplay, loop, }: AudioGalleryProps): import("react/jsx-runtime").JSX.Element;
export {};
