export declare const GraphSnapshotStatus: {
    readonly Creating: "CREATING";
    readonly Available: "AVAILABLE";
    readonly Deleting: "DELETING";
    readonly Failed: "FAILED";
};
/**
 * The current status of the graph snapshot.
 */
export type GraphSnapshotStatus = (typeof GraphSnapshotStatus)[keyof typeof GraphSnapshotStatus];
