import React from 'react'; declare type SelectContactsProps = { className?: string; contactList: Array; selectedContacts: Array; handleNext: () => void; onSelected: (contact: Array) => void; onDeleted: (contact: Array) => void; }; export declare const SelectContacts: React.FC; export {};