import { FileType } from '@zeniai/client-epic-state'; export type DownloadMenuItem = { type: FileType; customText?: string; isDisabled?: boolean; isDownloading?: boolean; }; export interface SimpleDownloadMenuButtonProps { downloadButtonDataTestId?: string; downloadMenuItems?: DownloadMenuItem[]; isDisabled?: boolean; menuWidth?: string; onDownloadClick?: (type: FileType, customText?: string) => void; } export interface DownloadMenuProps extends SimpleDownloadMenuButtonProps { menuWidth?: string; } export declare const SimpleDownloadMenuButton: (props: SimpleDownloadMenuButtonProps) => import("react/jsx-runtime").JSX.Element;