import { AccountCode } from '../../../shared/entities/stock'; export type Entity = AccountCode; export declare const Route = "account_code"; export declare const UpperName = "AccountCode"; export declare const LowerName: string; export interface IFindByCode { code: string; } export interface IRepository { findByCode(params: IFindByCode): Promise; }