import { default as React } from 'react';
import { ChipProps } from '@mui/material';
export type FinChipTone = 'soft' | 'solid' | 'outlined';
export interface FinChipProps extends Omit<ChipProps, 'color' | 'variant'> {
    /**
     * Main color for the chip. Accepts hex (e.g. #005B35),
     * or semantic keys 'primary' | 'secondary' | 'success' | 'error' | 'warning' | 'info' | 'neutral'.
     */
    colorKey?: 'primary' | 'secondary' | 'success' | 'error' | 'warning' | 'info' | 'neutral';
    colorHex?: string;
    tone?: FinChipTone;
    /** Background opacity for soft tone (0..1) */
    bgAlpha?: number;
    /** Border opacity for soft tone (0..1) */
    borderAlpha?: number;
    sx?: any;
}
export declare const FinChip: React.FC<FinChipProps>;
export default FinChip;
