import React from 'react'; import type { Job } from '@bundle-stats/utils'; export type BundleAssetsProps = { jobs: Array; filters?: Record; search?: string; sortBy?: string; direction?: string; setState: () => void; }; export declare const BundleAssets: (props: BundleAssetsProps) => React.JSX.Element;