import { Addresses } from '../../types'; declare type Args = { privateKey: string; provider: string; groupName: string; groupSymbol: string; }; /** * Create a group * Check if group exists before proceeding * @param args */ export default function (args: Args, addresses: Addresses): Promise<{ status: boolean; msg: string; data: any; }>; export {};