declare class LocationDto {
    lat?: number;
    lng?: number;
    northEastLat?: number;
    northEastLng?: number;
    southWestLat?: number;
    southWestLng?: number;
}
export declare class GetTrainingCalloutDto {
    userName?: string;
    gymName?: string;
    location?: LocationDto;
    radius?: number;
}
export {};
