interface LidToPN { id: string; pn: string; } export declare class LidPNRepository { private lids; saveLids(lids: LidToPN[]): Promise; getAllLids(): Promise; getLidsCount(): Promise; findPNByLid(lid: string): Promise; findLidByPN(pn: string): Promise; } export {};