///
import type { ChipProps as MuiChipProps } from "@mui/material";
declare const CHIP_VARIANTS: readonly ["error", "warn", "attention", "neutral", "active", "pending", "success"];
export interface ChipProps extends Pick {
/**
* Variant of chip.
*
* Types of variants sorted from worst to best:
* * error: failed
* * warn: warning
* * attention: not started
* * neutral: default state
* * active: active/running
* * pending: low risk
* * success: completion/succeeded
*/
variant: typeof CHIP_VARIANTS[number];
filled?: boolean;
onDelete?: (e: any) => void;
deleteIcon?: any;
}
declare const Chip: ({ variant, filled, size, onDelete, deleteIcon, ...props }: ChipProps) => JSX.Element;
export { Chip, CHIP_VARIANTS };
//# sourceMappingURL=chip.d.ts.map