import * as factory from '../factory'; import { Service } from '../service'; declare type IPermitAsResponse = Omit; /** * 許可証サービス */ export declare class PermitService extends Service { /** * 許可証照会 * 存在しない場合、ステータスコード404を返します */ findByIdentifier(params: { project: { id: string; }; identifier: string; issuedThrough: { typeOf: string; }; }): Promise; /** * 許可証照会 * 存在しない場合、ステータスコード404を返します */ findByAccessCode(params: { project: { id: string; }; identifier: string; accessCode: string; issuedThrough: { typeOf: string; }; }): Promise; } export {};