/***********************************************
 * @license
 * Copyright (c) QBCart Inc. All rights reserved.
 ************************************************/
import type { SearchResult } from 'minisearch';
export default interface Customer extends SearchResult {
    id: string;
    _ts: number;
    IsActive: boolean;
    Name: string;
    Location: string;
    SalesRepListId: string;
}
