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