import type { File } from '../../../../../../shared/contracts/files';
interface BulkActionsBarProps {
    /**
     * The assets currently rendered in the list, used to resolve the mime types
     * of the selection — the bar needs them to know which selected assets the AI
     * provider can actually read.
     *
     * Selection is page-scoped and cleared whenever the list identity changes, so
     * every selected asset id is guaranteed to appear here.
     */
    assets?: File[];
}
export declare const BulkActionsBar: ({ assets }: BulkActionsBarProps) => import("react/jsx-runtime").JSX.Element | null;
export {};
