import type { Lines } from '../types'; export declare const extractPersonalDetails: (lines: Lines) => { name: string | null; emails: string[]; phoneNumbers: string[]; };