import { HttpStatus } from '@nestjs/common';
import { ProfilesService } from './profiles.service';
import { CreateProfileDto, UpdateProfileDto } from './pets.dto';
export declare class ProfilesController {
    private readonly profilesService;
    constructor(profilesService: ProfilesService);
    getProfiles(req: any): Promise<{
        status: boolean;
        statusCode: HttpStatus;
        data: any[];
    }>;
    getAllProfiles(): Promise<{
        status: boolean;
        statusCode: HttpStatus;
        data: any[];
    }>;
    getProfilesBySuburb(suburb: string): Promise<{
        status: boolean;
        statusCode: HttpStatus;
        data: {
            id: any;
            pet_type: any;
            pet_name: any;
            breed: any;
            size: any;
            color: any;
            markings: any;
            photo_uris: any;
            suburb: any;
            microchip_number: any;
            created_at: any;
            ownerdisplay_name: any;
        }[];
    }>;
    createProfile(req: any, body: CreateProfileDto, files?: {
        photos?: Express.Multer.File[];
        biometricPhotos?: Express.Multer.File[];
    }): Promise<{
        status: boolean;
        statusCode: HttpStatus;
        data: any;
    }>;
    getProfile(req: any, id: string): Promise<{
        status: boolean;
        statusCode: HttpStatus;
        data: any;
    }>;
    getSharedProfile(req: any, id: string): Promise<{
        status: boolean;
        statusCode: HttpStatus;
        data: any;
    }>;
    updateProfile(req: any, id: string, body: UpdateProfileDto, files?: {
        photos?: Express.Multer.File[];
        biometricPhotos?: Express.Multer.File[];
    }): Promise<{
        status: boolean;
        statusCode: HttpStatus;
        data: any;
    }>;
    deleteProfile(req: any, id: string): Promise<{
        status: boolean;
        statusCode: HttpStatus;
        data: {
            message: string;
        };
    }>;
}
