import type { FrenchNumberPrefix } from './input-phone.utils'; export interface DSAPhoneConfig { pattern: string; mask: string; placeholder: string; } /** * Get Input Phone configuration by phone prefix for French phone numbers including Dom-Toms * @type DSAPhoneConfig * @variables * - pattern * - placeholder * * Make sure to set the validate property to `true` */ export declare function getPhoneConfig(phonePrefix: FrenchNumberPrefix): DSAPhoneConfig;