/***********************************************************************************************************************
* This file is auto-generated. If you have an issue, please create a GitHub issue.                                     *
***********************************************************************************************************************/
import { Base } from '../../base';
import { ResourcePath, ResourceNames } from '../../types';
import { Session } from '../../../lib/session/session';
import { ApiVersion } from '../../../lib/types';
interface FindArgs {
    session: Session;
    id: number | string;
}
interface DeleteArgs {
    session: Session;
    id: number | string;
}
interface CsrArgs {
    [key: string]: unknown;
    session: Session;
    id: number | string;
}
export declare class ApplePayCertificate extends Base {
    static apiVersion: ApiVersion;
    protected static hasOne: {
        [key: string]: typeof Base;
    };
    protected static hasMany: {
        [key: string]: typeof Base;
    };
    protected static paths: ResourcePath[];
    protected static resourceNames: ResourceNames[];
    static find({ session, id }: FindArgs): Promise<ApplePayCertificate | null>;
    static delete({ session, id }: DeleteArgs): Promise<unknown>;
    static csr({ session, id, ...otherArgs }: CsrArgs): Promise<unknown>;
    id: number | null;
    merchant_id: string | null;
    status: string | null;
}
export {};
//# sourceMappingURL=apple_pay_certificate.d.ts.map