export declare namespace $.com.deno.kv.datapath {
    type AtomicWriteStatus = "AW_UNSPECIFIED" | "AW_SUCCESS" | "AW_CHECK_FAILURE" | "AW_WRITE_DISABLED";
}
export type Type = $.com.deno.kv.datapath.AtomicWriteStatus;
export declare const num2name: {
    readonly 0: "AW_UNSPECIFIED";
    readonly 1: "AW_SUCCESS";
    readonly 2: "AW_CHECK_FAILURE";
    readonly 5: "AW_WRITE_DISABLED";
};
export declare const name2num: {
    readonly AW_UNSPECIFIED: 0;
    readonly AW_SUCCESS: 1;
    readonly AW_CHECK_FAILURE: 2;
    readonly AW_WRITE_DISABLED: 5;
};
