import { FunctionComponent } from "react"; interface AddressBookTableRowProps { onAddressSelect: () => void; address: string; isLocal: boolean; name: string; network?: string; source?: string; } export declare const AddressBookTableRow: FunctionComponent; interface AddressBookTableRowEmptyProps { message: string; } export declare const AddressBookTableRowEmpty: FunctionComponent; export {};