/// <reference types="node" />
import { AciString } from '../types';
export type Contact = Readonly<{
    aci: AciString;
    number: string;
    profileName: string;
}>;
export declare function serializeContacts(contacts: ReadonlyArray<Contact>): Buffer;
