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