import * as React from 'react'; export interface DownloadButtonsProps { /** * One or more of DownloadButtons.Button. */ children?: React.ReactNode; } export interface ButtonProps { href: string; src: string; alt: string; title: string; 'aria-label': string; } export const DownloadButtons: React.FC & { Button: React.FC; }; export default DownloadButtons;