import { Country } from '../addresses/CountryDecoder.js'; import { StamhoofdFilter } from './StamhoofdFilter.js'; export type ParsePhoneNumber = (search: string, country: Country.Belgium) => { isValid: () => boolean; formatInternational: () => string; }; export declare class SearchFilterFactory { static getIntegerFilter(search: string): StamhoofdFilter | null; static getEmailFilter(search: string): StamhoofdFilter | null; static getPhoneFilter(search: string, parsePhoneNumber: ParsePhoneNumber): StamhoofdFilter | null; } //# sourceMappingURL=SearchFilterFactory.d.ts.map