import { VNode } from 'vue';
export interface ApProductInfoProps {
    imgSrc?: string;
    preview?: boolean;
    title?: string;
    values?: ApProductInfoValue[];
    disableCopy?: boolean;
}
export interface ApProductInfoValue {
    label?: string;
    link?: string;
    col?: number;
    value?: string | number | VNode | (() => VNode);
    helpMessage?: string | VNode;
    toolTipBgColor?: string;
}
