/** * Illinois IDFPR Adapter * Scrapes online-dfpr.micropact.com (MicroPact platform) * * Illinois Department of Financial and Professional Regulation */ interface IllinoisLicense { licenseNumber: string; name: string; licenseType: string; status: string; issueDate?: string; expirationDate?: string; address?: { city?: string; county?: string; state?: string; }; profession?: string; } /** * Search by license number */ export declare function searchByLicenseNumber(licenseNumber: string, professionCode?: string): Promise; /** * Search by name */ export declare function searchByName(lastName: string, firstName?: string): Promise; declare const _default: { searchByLicenseNumber: typeof searchByLicenseNumber; searchByName: typeof searchByName; PROFESSIONS: Record; }; export default _default; //# sourceMappingURL=illinois.d.ts.map