import type { InvoiceBulkStatusResult } from "../index.js"; export interface InvoiceBulkActionsProps { selectedCount: number; result: InvoiceBulkStatusResult | null; pending: boolean; onClear: () => void; onMarkPaid: () => unknown; } export declare function InvoiceBulkActions({ selectedCount, result, pending, onClear, onMarkPaid, }: InvoiceBulkActionsProps): import("react").JSX.Element;