/** * Washington State DOH Adapter * Scrapes doh.wa.gov (Department of Health) */ interface WashingtonLicense { licenseNumber: string; name: string; licenseType: string; status: string; issueDate?: string; expirationDate?: string; address?: { city?: string; county?: string; state?: string; }; credential?: string; } /** * Search by license/credential number */ export declare function searchByLicenseNumber(licenseNumber: string): Promise; /** * Search by name */ export declare function searchByName(lastName: string, firstName?: string): Promise; declare const _default: { searchByLicenseNumber: typeof searchByLicenseNumber; searchByName: typeof searchByName; }; export default _default; //# sourceMappingURL=washington.d.ts.map