import { PropType } from 'vue';
import { ApProductInfoValue } from './interface';
export declare const ApProductInfoProps: () => {
    title: {
        type: StringConstructor;
        default: string;
    };
    imgSrc: {
        type: StringConstructor;
        default: string;
    };
    preview: {
        type: BooleanConstructor;
        default: boolean;
    };
    values: {
        type: PropType<ApProductInfoValue[]>;
        default: () => never[];
    };
    disableCopy: {
        type: BooleanConstructor;
        default: boolean;
    };
};
