interface InlineDropZoneProps { /** Externally-controlled drag state. Parent (`MissingReceiptsBulkUploadNavStrip`) drives this from the shared `isDraggingFiles` truth so CSS transitions can animate in both directions. */ isDragActive?: boolean; onFilesSelected: (files: File[]) => void; } export declare const InlineDropZone: ({ isDragActive, onFilesSelected, }: InlineDropZoneProps) => import("react/jsx-runtime").JSX.Element; export declare const DROPZONE_SWAP_MS = 280; export declare const DROPZONE_EASE = "cubic-bezier(0.22, 1, 0.36, 1)"; export {};