/**
 * 记录信息的mixin
 */
export declare const InfoCrudMixin: {
    attributes: {};
    options: {
        createdAt: string;
        updatedAt: string;
        deletedAt: string;
        paranoid: boolean;
        getterMethods: {
            createTime(): any;
            updateTime(): any;
        };
    };
};
