import { PublicApiCryptoService } from '../common/crypto/public-api-crypto.service';
import { LocationsService } from './locations.service';
export declare class LocationsController {
    private readonly locations;
    private readonly crypto;
    constructor(locations: LocationsService, crypto: PublicApiCryptoService);
    countries(): Promise<{
        message: string;
        data: {};
    }>;
    states(country: string, payload?: string): Promise<{
        message: string;
        data: {};
    }>;
}
