/** Struct describing a location being checked for visibility */
export interface SearchData {
    /** City of the location */
    city: string;
    /** Country of the location */
    country: string;
    /** Id of the search */
    id: number;
    /** Name of the location */
    name: string;
    /** Province of the location */
    province?: string;
    /** Street of the location */
    street: string;
    /** Street numero of the location */
    streetNo: string;
    /** Token to use to get the results of the search */
    token: string;
    /** Zipcode of the location */
    zip: string;
}
//# sourceMappingURL=SearchData.d.ts.map