import type { CQCode } from '../index';
/**
 * @param { string } text 即将被解析的CQCode字符串，以[开始，以]结束。
 * @return { CQCode } 返回CQCode对象。
 */
export declare const parse: (text: string) => CQCode;
