import { Entity } from '@loopback/repository';
import { Options } from 'loopback4-billing';
export declare class AddressDto extends Entity {
    firstName: string;
    lastName: string;
    email: string;
    company?: string;
    phone?: string;
    city: string;
    state: string;
    zip: string;
    country: string;
    options?: Options;
    constructor(data?: Partial<AddressDto>);
}
