/// export type Asset = { name: string; src: string; type: string; }; export interface GalleryProps { assets: Asset[]; } export declare const getYouTubeEmbedURL: (url: string) => string; export declare function Gallery(props: GalleryProps): JSX.Element;