type MaskedOverflowInputProps = { value: string; copyLabel?: string; label?: string; maskSize?: number; onCopy?: (value: string) => void; className?: string; }; declare const MaskedOverflowInput: ({ value, copyLabel, label, maskSize, onCopy, className, }: MaskedOverflowInputProps) => import("react/jsx-runtime").JSX.Element; export { MaskedOverflowInput }; export type { MaskedOverflowInputProps };