import type { Faker } from '@faker-js/faker'; export default class LocationGenerator { private generator; private street; private city; private state; private zip; private country; constructor(generator: Faker); getAddress(): string; /** * Generates a string representation of the location. * - {street} - the street address * - {city} - the city * - {state} - the state * - {zip} - the zip code * - {country} - the country */ toString(pattern?: string): string; } //# sourceMappingURL=LocationGenerator.d.ts.map