export declare enum Status {
    ACTIVE = "ACTIVE",
    ARCHIVED = "ARCHIVED"
}
export type StatusType = keyof typeof Status;
