import { Repository } from 'typeorm';
import { Project } from './entities/project.entity';
export declare class ProjectsRepository {
    private readonly repo;
    constructor(repo: Repository<Project>);
    findAllByCategory(category?: string): Promise<Project[]>;
    findOneByUrl(url: string): Promise<Project | null>;
}
