export declare const users: User[]; export interface User { id: string; username: string; } export declare const createOne: ({ username }: Omit) => User; export declare const findAll: () => User[];