import { Repository } from 'typeorm';
import { AboutProfile } from './entities/about-profile.entity';
export declare class AboutRepository {
    private readonly repo;
    constructor(repo: Repository<AboutProfile>);
    findProfile(): Promise<AboutProfile | null>;
}
