import type { AttributionAward, AttributionExceptionView } from '../types.js'; export interface Props { /** Exceptions to review (open and/or resolved). */ exceptions?: AttributionExceptionView[]; /** Disable actions while a resolution is in flight. */ busy?: boolean; /** BCP 47 locale for date/percent formatting. */ locale?: string; /** Resolve an open exception with explicit awards and a required reason. */ onResolve?: (exceptionId: string, awards: AttributionAward[], resolutionReason: string) => void; } declare const AttributionConflictQueue: import("svelte").Component; type AttributionConflictQueue = ReturnType; export default AttributionConflictQueue; //# sourceMappingURL=AttributionConflictQueue.svelte.d.ts.map