/** * Florida MQA Adapter * Scrapes mqa-internet.doh.state.fl.us * * License prefixes: ME = Physician, DO = Osteopath, RN = Nurse, etc. * See: https://flhealthsource.gov/files/info-prefixes.pdf */ interface FloridaLicense { licenseNumber: string; name: string; licenseType: string; status: string; issueDate?: string; expirationDate?: string; city?: string; county?: string; state: string; profession?: string; boardActions?: boolean; } /** * Search by license number (must include prefix, e.g., ME12345) */ 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; LICENSE_PREFIXES: Record; }; export default _default; //# sourceMappingURL=florida.d.ts.map