import type { Except, JsonValue } from 'type-fest';
import type { BasicMetaSysProps, AppActionCallRetryOptions, DefaultElements, MakeRequest, SysLink, CreateWithResponseParams, CreateWithResultParams, GetAppActionCallDetailsParams, GetAppActionCallParamsWithId } from '../common-types';
import type { WebhookCallDetailsProps } from './webhook';
type AppActionCallSys = Except<BasicMetaSysProps, 'version'> & {
    appDefinition: SysLink;
    space: SysLink;
    environment: SysLink;
    action: SysLink;
    appActionCallResponse?: SysLink;
} & (AppActionCallSucceeded | AppActionCallProcessing | AppActionCallFailed);
type RetryOptions = AppActionCallRetryOptions;
export type AppActionCallStatus = 'processing' | 'succeeded' | 'failed';
export interface AppActionCallErrorProps {
    sys: {
        type: 'Error';
        id: string;
    };
    message: string;
    details?: Record<string, unknown>;
    statusCode?: number;
}
export type AppActionCallSucceeded = {
    status: 'succeeded';
    result: JsonValue;
};
export type AppActionCallProcessing = {
    status: 'processing';
};
export type AppActionCallFailed = {
    status: 'failed';
    error: AppActionCallErrorProps;
};
export type AppActionCallProps = {
    /**
     * System metadata
     */
    sys: AppActionCallSys;
};
export type CreateAppActionCallProps = {
    /** The body for the call */
    parameters: {
        [key: string]: unknown;
    };
};
type AppActionCallApi = {
    createWithResponse(params: CreateWithResponseParams, payload: CreateAppActionCallProps): Promise<AppActionCallResponse>;
    getCallDetails(params: GetAppActionCallDetailsParams): Promise<AppActionCallResponse>;
    get(params: GetAppActionCallParamsWithId): Promise<AppActionCallProps>;
    createWithResult(params: CreateWithResultParams, payload: CreateAppActionCallProps): Promise<AppActionCallProps>;
};
export type AppActionCallResponse = WebhookCallDetailsProps;
export interface AppActionCallRawResponseProps {
    sys: {
        id: string;
        type: 'AppActionCallResponse';
        space: SysLink;
        environment: SysLink;
        appInstallation: SysLink;
        appAction: SysLink;
        createdAt: string;
        createdBy: SysLink;
    };
    response: {
        headers?: {
            contentType?: string;
        };
        statusCode?: number;
        body: string;
    };
}
export interface AppActionCallResponseData extends AppActionCallResponse, DefaultElements<AppActionCallResponse>, AppActionCallApi {
}
export type AppActionCall = AppActionCallProps & DefaultElements<AppActionCallProps>;
/**
 * @internal
 */
export default function createAppActionCallApi(makeRequest: MakeRequest, retryOptions?: RetryOptions): AppActionCallApi;
/**
 * @internal
 * @param http - HTTP client instance
 * @param data - Raw AppActionCall data
 * @returns Wrapped AppActionCall data
 */
export declare function wrapAppActionCall(makeRequest: MakeRequest, data: AppActionCallProps): AppActionCall;
/**
 * @internal
 * @param http - HTTP client instance
 * @param data - Raw AppActionCall data
 * @returns Wrapped AppActionCall data
 */
export declare function wrapAppActionCallResponse(makeRequest: MakeRequest, data: AppActionCallResponse, retryOptions?: RetryOptions): AppActionCallResponseData;
export {};
