import Block from "./Block";
export default class Script {
    x: number;
    y: number;
    blocks: Block[];
    name: string;
    constructor(options: {
        blocks: Block[];
        x?: number;
        y?: number;
        name?: string;
    });
    get hat(): Block | null;
    get body(): Block[];
    setName(name: string): void;
}
