import { CommonService } from './common.service';
import { UpdateProfileDto } from './dto/update-profile.dto';
import { ChangePasswordDto } from './dto/change-password.dto';
export declare class CommonController {
    private readonly commonService;
    constructor(commonService: CommonService);
    findAll(): Promise<Record<string, string>>;
    updateSetting(payload: Record<string, string>): Promise<Record<string, string>>;
    updateProfile(req: any, dto: UpdateProfileDto): Promise<import("../../entities/user.entity").User>;
    changePassword(req: any, dto: ChangePasswordDto): Promise<string>;
    getCountries(): Promise<import("../../entities/country.entity").Country[]>;
}
