type AugnitoSocketResponse = {
    Status: number;
    Event: 'None' | {
        Type: string;
        Value: string;
    };
    Type: string;
    SessionCode: string;
    Result: AugnitoSocketResult;
};
type AugnitoSocketResult = {
    Final: boolean;
    IsCommand: boolean;
    Action: string;
    Transcript: string;
};
export { AugnitoSocketResponse, AugnitoSocketResult };
