import { IntegerAttribute } from '@comparaonline/offers-models';
import { ProductAttributeParams } from '../ProductAttribute';
import { BaseProductAttributeFactory } from './BaseAttribute';
export interface IntegerAttributeParams extends ProductAttributeParams {
    value?: number;
}
export declare class IntegerAttributeFactory extends BaseProductAttributeFactory {
    constructor();
    build(options?: IntegerAttributeParams): IntegerAttribute;
}
export declare const integerAttributeFactory: IntegerAttributeFactory;
