import { BlockContentTrait, IBlockTraitData, ITraitConfig } from "./ContentTraits";
/**
 * Slab - half-height block.
 * Uses the minecraft:placement_position trait with minecraft:vertical_half
 * to automatically handle top/bottom placement based on where the player clicks.
 */
export declare class SlabBlockTrait extends BlockContentTrait {
    get id(): string;
    getData(_config?: ITraitConfig): IBlockTraitData;
}
