/** * Texas Medical Board Adapter * Scrapes profile.tmb.state.tx.us * * Target: ASP.NET WebForms application * Method: POST with ViewState */ interface TexasLicense { licenseNumber: string; name: string; licenseType: string; status: string; issueDate?: string; expirationDate?: string; city?: string; state?: string; specialties?: string[]; boardActions?: string[]; } /** * Search for a license by number */ export declare function searchByLicenseNumber(licenseNumber: string): Promise; /** * Search for a license by name */ export declare function searchByName(lastName: string, firstName?: string): Promise; declare const _default: { searchByLicenseNumber: typeof searchByLicenseNumber; searchByName: typeof searchByName; }; export default _default; //# sourceMappingURL=texas.d.ts.map