import * as React from "react";
export type StatusType = "active" | "inactive" | "pending" | "inProgress" | "completed" | "failed" | "blocked" | "archived" | "discarded" | "readyForReview";
export interface StatusIndicatorProps {
/** Status type */
status: StatusType;
/** Custom label (defaults to status name) */
label?: string;
/** Whether to show the status dot */
showDot?: boolean;
/** Custom className */
className?: string;
}
/**
* StatusIndicator component for displaying status with colored dot
*
* Used in iCaptur for:
* - Candidate status (Active, Archived, etc.)
* - Resume processing status (In Process, Ready for review, Discarded)
* - User status indicators
* - Job status
*
* @example
* ```tsx
*
*
*
* ```
*/
export declare const StatusIndicator: React.ForwardRefExoticComponent>;
//# sourceMappingURL=status-indicator.d.ts.map