export interface TbliveRule {
    enabled: boolean;
}
export default function (rules?: TbliveRule[]): {
    follow: (accountId: string | number) => void;
    invokeEditor: (content?: string) => void;
    addFavor: () => void;
    showSharePanel: () => void;
    showGoodsPackage: () => void;
};
