import { PropertyDefinition } from "../property-definition";
/**
 * Integer property definition.
 */
export declare class IntegerPropertyDefinition extends PropertyDefinition {
    constructor(name: string, init?: Omit<Partial<IntegerPropertyDefinition>, "name">);
}
