import { TLObject } from '../../TL.js';
import { Raw } from '../../../platform.node.js';
import type { Snake } from '../../../Client/index.js';
export declare class Dice extends TLObject {
    emoji: string;
    value: number;
    constructor({ emoji, value, }: {
        emoji: string;
        value: number;
    }, client: Snake);
    static parse(client: Snake, dice: Raw.MessageMediaDice): Dice;
}
