export interface PublicKeyDTO {
    part1: string;
    part2: string;
}
export declare function parsePublicKeyDTO(data: any): PublicKeyDTO;
