import React from 'react';
export type Props = {
    image: string;
    isLineDrop?: boolean;
    isSmall?: boolean;
    showIcon?: boolean;
    hideContent?: boolean;
    hideTitle?: boolean;
    hideButton?: boolean;
};
declare const SensitiveMask: ({ image, showIcon }: Props) => React.JSX.Element;
export { SensitiveMask };
