export interface ShopRule {
    sellerId: string;
}
export default function (rules?: ShopRule[]): {
    hasFollowed: (sellerId: string) => Promise<boolean>;
    addFollow: (sellerId: string, originBiz?: string, originPage?: string) => Promise<boolean>;
};
