import React from 'react';
import { Asset as AssetType } from '@sanity/types';
interface Props {
    onClick?: (...args: any[]) => any;
    onKeyPress?: (...args: any[]) => any;
    onDeleteFinished: (...args: any[]) => any;
    assets: AssetType[];
    isLoading?: boolean;
    selectedAssets: AssetType[];
}
export default function TableList(props: Props): React.JSX.Element;
export {};
//# sourceMappingURL=TableList.d.ts.map