import { Key } from 'react'; interface Item { id: Key; email: string; firstName: string; lastName: string; status: 'Pending' | 'Active' | 'Failed' | 'Rejected'; } export declare const items: Item[]; export {};