import { ResponseTypeEnum } from './ResponseTypeEnum';
import { ResponseTrackingOptions } from './ResponseTrackingOptions';
/** A structure describing how to manage an sms Response */
export interface Response {
    /** Default url callback used for a given response. */
    cgiUrl?: string;
    /**  */
    responseType: ResponseTypeEnum;
    /** Automatic notification sent by text in case of customer reply. */
    text?: string;
    /**  */
    trackingDefaultSmsSender?: string;
    /**  */
    trackingOptions?: ResponseTrackingOptions[];
}
//# sourceMappingURL=Response.d.ts.map