import * as protobuf from 'protobufjs';
export interface FieldMask {
paths: string[];
}
export declare function googleProtobufFieldMaskToProto3JSON(obj: protobuf.Message & FieldMask): string;
export declare function googleProtobufFieldMaskFromProto3JSON(json: string): {
paths: string[];
};