export interface IItemID {
    id: string;
}
export interface IValueTitle<TValue = string> {
    value: TValue;
    title: string;
}
export interface ISlugTitle<TValue = string> {
    slug: TValue;
    title: string;
}
export interface ISoapResponse {
    'SOAP-ENV:Envelope': SOAPENVEnvelope;
}
interface SOAPENVEnvelope {
    'SOAP-ENV:Body': SOAPENVBody;
}
interface SOAPENVBody {
    'ns4:EchoCheckResponse': Ns4EchoCheckResponse;
}
interface Ns4EchoCheckResponse {
    EchoCheck_Response: EchoCheckResponse;
}
interface EchoCheckResponse {
    ResponseCode: number;
    ResponseDescription: string;
    Message: string;
}
export {};
