export declare type Annotations = {
    id: string;
    etag: string;
    annotations: {
        [key: string]: AnnotationsValue;
    };
};
export declare type AnnotationsValue = {
    type: AnnotationsValueType;
    value: string[] | number[];
};
export declare enum AnnotationsValueType {
    'STRING' = 0,
    'DOUBLE' = 1,
    'LONG' = 2,
    'TIMESTAMP_MS' = 3
}
