export interface IItemExample { id: number; skuTitle: string; fulfillmentCenter: string; fulfillmentStatus: string; createdBy: string; completedBy: string; } export default function mockItem(): IItemExample;