import { ContestantAuthService } from './contestant-auth.service';
import { ContestantLoginDto } from './dto/contestant-login.dto';
import { Contestant } from '../contestants/entities/contestant.entity';
export declare class ContestantAuthController {
    private readonly contestantAuthService;
    constructor(contestantAuthService: ContestantAuthService);
    login(loginDto: ContestantLoginDto): Promise<{
        access_token: string;
        contestant: {
            id: string;
            name: string;
            school: string;
            photo_url: string;
            campaign: {
                id: string;
                title: string;
                slug: string;
            };
        };
    }>;
    getProfile(contestant: Contestant): Promise<{
        id: string;
        name: string;
        school: string;
        photo_url: string;
        total_votes: number;
        unique_voters: number;
        campaign: {
            id: string;
            title: string;
            slug: string;
        };
    }>;
    getMyVotes(contestant: Contestant, page?: string, limit?: string): Promise<{
        data: {
            id: string;
            voter_name: string;
            voter_email: string;
            voter_phone: string;
            votes: number;
            paid_at: Date;
        }[];
        meta: {
            total: number;
            page: number;
            limit: number;
            totalPages: number;
        };
    }>;
    changePassword(contestant: Contestant, body: {
        current_password: string;
        new_password: string;
    }): Promise<{
        message: string;
    }>;
}
