import { DOMProps, QAProps } from '@gravity-ui/uikit'; import "./DiffStat.css"; type DiffStatProps = DOMProps & QAProps & { added: number; deleted: number; }; export declare const DiffStat: (props: DiffStatProps) => import("react/jsx-runtime").JSX.Element; export {};