import { CountryPhoneDataConfig } from "./config";
import { CountryPhoneData } from "./countryPhoneData";
export default function generatePhoneNumber(config?: CountryPhoneDataConfig): string;
export declare function isPhoneNumberValid(phoneNumber: string, countryPhoneData?: CountryPhoneData, withoutCountryCode?: boolean): boolean;
