import Base, { ResourcePath } from '../../base-rest-resource';
import { SessionInterface } from '../../auth/session/types';
import { ApiVersion } from '../../base-types';
interface FindArgs {
    session: SessionInterface;
    id: number | string;
    order_id?: number | string | null;
}
interface DeleteArgs {
    session: SessionInterface;
    id: number | string;
    order_id?: number | string | null;
}
interface AllArgs {
    [key: string]: unknown;
    session: SessionInterface;
    order_id?: number | string | null;
}
export declare class OrderRisk extends Base {
    static API_VERSION: ApiVersion;
    protected static NAME: string;
    protected static PLURAL_NAME: string;
    protected static HAS_ONE: {
        [key: string]: typeof Base;
    };
    protected static HAS_MANY: {
        [key: string]: typeof Base;
    };
    protected static PATHS: ResourcePath[];
    protected static getJsonBodyName(): string;
    static find({ session, id, order_id }: FindArgs): Promise<OrderRisk | null>;
    static delete({ session, id, order_id }: DeleteArgs): Promise<unknown>;
    static all({ session, order_id, ...otherArgs }: AllArgs): Promise<OrderRisk[]>;
    cause_cancel: boolean | null;
    checkout_id: number | null;
    display: boolean | null;
    id: number | null;
    merchant_message: string | null;
    message: string | null;
    order_id: number | null;
    recommendation: string | null;
    score: number | null;
    source: string | null;
}
export {};
//# sourceMappingURL=order_risk.d.ts.map