import { Flowable } from '../Flowable';
export declare enum FlowerType {
    Poppy = 0,
    BlueOrchid = 1,
    Allium = 2,
    Houstonia = 3,
    AzureBluet = 4,
    RedTulip = 5,
    OrangeTulip = 6,
    WhiteTulip = 7,
    PinkTulip = 8,
    OxeyeDaisy = 9,
    CornFlower = 10,
    LilyOfTheValley = 11
}
export default class Poppy extends Flowable {
    constructor(name?: string, // Supposed to be "red_flower"  //  TODO: to match runtime states is red_flower
    type?: FlowerType);
}
//# sourceMappingURL=Poppy.d.ts.map