import { BlockToolType } from '../BlockToolType';
import { Solid } from '../Solid';
export declare enum DirtType {
    Regular = 0,
    Coarse = 1,
    Podzol = 2
}
export default class Dirt extends Solid {
    constructor(name?: string, type?: DirtType);
    getToolType(): BlockToolType[];
}
//# sourceMappingURL=Dirt.d.ts.map