import type { Faker } from '.'; export declare class Commerce { private readonly faker; constructor(faker: Faker); /** * color * * @method faker.commerce.color */ color(): string; /** * department * * @method faker.commerce.department */ department(): string; /** * productName * * @method faker.commerce.productName */ productName(): string; /** * price * * @method faker.commerce.price * @param min * @param max * @param dec * @param symbol */ price(min?: number, max?: number, dec?: number, symbol?: string): string; /** * productAdjective * * @method faker.commerce.productAdjective */ productAdjective(): string; /** * productMaterial * * @method faker.commerce.productMaterial */ productMaterial(): string; /** * product * * @method faker.commerce.product */ product(): string; /** * productDescription * * @method faker.commerce.productDescription */ productDescription(): string; }