/** * Validates a Tunisian company tax ID (Matricule Fiscal) * @param taxId - The tax ID to validate * @returns boolean indicating if the tax ID is valid */ export declare const validateTaxID: (taxId: string) => boolean;