import type { BasicComponentProps } from "../../../types";
import type { CnReadOnlyCommonProps } from '@cainiaofe/cn-ui-common';
export type CnReadOnlyProps = BasicComponentProps & CnReadOnlyCommonProps & {
    /**
     * 开启超出 8 行后自动收缩能力
     */
    isOverflowEllipsis?: boolean;
};
