export declare class User {
    id: string;
    name: string;
    email: string;
    status: string;
    createdAt?: string;
}
