import * as React from 'react'; import type { File } from '../../../../../shared/contracts/files'; type FileWithoutIdHash = Omit; interface EmptyStateAssetProps { disabled?: boolean; onClick: (asset?: File, event?: React.MouseEventHandler) => void; onDropAsset: (assets: FileWithoutIdHash[]) => void; } export declare const EmptyStateAsset: ({ disabled, onClick, onDropAsset, }: EmptyStateAssetProps) => import("react/jsx-runtime").JSX.Element; export {};