import { ID } from '../../commonStateTypes/common'; import { ZeniUrl as Url } from '../../zeniUrl'; export declare const toEntityType: (v?: string) => "vendor" | "customer" | "merchant"; export type EntityType = NonNullable>; export declare const toEntityDetailType: (v: string) => "card_merchant" | "bank_merchant"; type EntityDetailType = ReturnType; export interface Entity { id: ID; name: string; qboId: ID; type: EntityType; zeniId: ID; detailType?: EntityDetailType; isPreFilled?: boolean; logo?: Url; typeName?: string; } export {};