import { Expand } from 'arx-convert/utils';
import { Entity, EntityConstructorPropsWithoutSrc } from '../../Entity.js';
type LeverConstructorProps = Expand<EntityConstructorPropsWithoutSrc & {
    isSilent?: boolean;
}>;
export declare class Lever extends Entity {
    private propIsPulled;
    constructor({ isSilent, ...props }?: LeverConstructorProps);
    get isPulled(): boolean;
    set isPulled(value: boolean);
}
export {};
