import type { JobData } from './types.js'; export interface Props { /** Job to perform actions on */ job: JobData; /** Show retry button */ showRetry?: boolean; /** Show cancel button */ showCancel?: boolean; /** Show delete button */ showDelete?: boolean; /** Callback when retry is clicked */ onRetry?: (job: JobData) => void; /** Callback when cancel is clicked */ onCancel?: (job: JobData) => void; /** Callback when delete is clicked */ onDelete?: (job: JobData) => void; /** Compact mode */ compact?: boolean; } declare const JobActions: import("svelte").Component; type JobActions = ReturnType; export default JobActions; //# sourceMappingURL=JobActions.svelte.d.ts.map