import { ChipProps } from '@mui/material/Chip'; import { ZTooltipProps } from '../ZTooltip/ZTooltip'; interface CustomTooltipPropsType extends Omit { } export interface CopyChipPropsType { chipProps?: ChipProps; tooltipProps?: CustomTooltipPropsType; withToolTip?: boolean; onCopySuccess?: (text: string) => void; onCopyFailed?: (text: string, err: any) => void; resetDelay?: number; title?: string; copiedTitle?: string; content: string; } export declare const ZCopyChip: (props: CopyChipPropsType) => JSX.Element; export {};