import { IIROSE_Bot } from '../../bot/bot';
export interface Stock {
    unitPrice: number;
    totalStock: number;
    personalStock: number;
    totalMoney: number;
    personalMoney: number;
}
/**
 * 解析股票信息
 * @param message 消息
 * @param bot bot实例
 * @returns {Stock | null}
 */
export declare const stock: (message: string, bot: IIROSE_Bot) => Stock;
