interface ChipAvatarModel {
    label: string;
    srcAvatar?: string;
}
export interface ChipOutputPropsModel {
    label?: string;
    showBorder?: boolean;
    showBoxShadow?: boolean;
    backgroundColor?: string;
    showDivider?: boolean;
    isWithAvatar?: boolean;
    listChip?: Array<ChipAvatarModel>;
    textColor?: string;
    backgroundColorChip?: string;
    deleteIconChip?: boolean;
    onDeleteChip?: (chip: string) => void;
}
export {};
