import type { Faker } from '.'; export declare class Company { private readonly faker; constructor(faker: Faker); /** * suffixes * * @method faker.company.suffixes */ suffixes(): string[]; /** * companyName * * @method faker.company.companyName * @param format */ companyName(format?: number): string; /** * companySuffix * * @method faker.company.companySuffix */ companySuffix(): string; /** * catchPhrase * * @method faker.company.catchPhrase */ catchPhrase(): string; /** * bs * * @method faker.company.bs */ bs(): string; /** * catchPhraseAdjective * * @method faker.company.catchPhraseAdjective */ catchPhraseAdjective(): string; /** * catchPhraseDescriptor * * @method faker.company.catchPhraseDescriptor */ catchPhraseDescriptor(): string; /** * catchPhraseNoun * * @method faker.company.catchPhraseNoun */ catchPhraseNoun(): string; /** * bsAdjective * * @method faker.company.bsAdjective */ bsAdjective(): string; /** * bsBuzz * * @method faker.company.bsBuzz */ bsBuzz(): string; /** * bsNoun * * @method faker.company.bsNoun */ bsNoun(): string; }