import { EntityManager, Repository } from 'typeorm';
import CustomerEntity from "../entities/customer.js";
declare class Customer extends Repository<CustomerEntity> {
    /**
     * Returns customer by account id
     */
    /**
     * Returns customer by account id
     */
    static getCustomerByAccountId(accountId: string, manager: EntityManager): Promise<CustomerEntity>;
}
export { Customer as default };
