import React from 'react'; import { Asset as AssetType } from '@sanity/types'; interface RowProps { isMobile?: boolean; asset?: AssetType; isSelected?: boolean; onClick?: (...args: any[]) => any; onKeyPress?: (...args: any[]) => any; onDeleteFinished?: (...args: any[]) => any; } declare const AssetRow: (props: RowProps) => React.JSX.Element; export default AssetRow; //# sourceMappingURL=AssetRow.d.ts.map